AKutils is a Python package that contains functions to aid geospatial data development for Alaska.
Author: Timm Nawrocki, Alaska Center for Conservation Science, University of Alaska Anchorage
Created On: 2023-10-10
Last Updated: 2024-04-04
Description: Functions for data acquisition, data manipulation, statistical modeling, results post-processing, and accuracy assessment for geospatial data development in Alaska.
These instructions will enable you to import functions from the AKutils package into scripts.
- Python 3.9+
- pip
- arcpy
- datetime
- pandas
- psycopg2
- rasterio
- time
This section describes the purpose of each script and gives instructions for modifying parameters to reproduce results or adapt to another project.
pip install git+https://github.com/accs-uaa/akutils
This section describes the purpose of each function and provides details of parameters and outputs.
The end_timing function is used to calculate the amount of time a process took to complete. The
- iteration_start: Specify a time captured using the time.time() function.
print('Counting to 1,000,000...')
iteration_start = time.time()
count = 1
while count < 1000000:
count += 1
end_timing(iteration_start)
- Timm Nawrocki - Alaska Center for Conservation Science, University of Alaska Anchorage
Usage of the scripts, packages, tools, or routines included in this repository should be cited as follows:
Nawrocki, T.W. 2023. AKutils. Git Repository. Available: https://github.com/accs-uaa/akutils
N/A