Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README and fix an import error #1

Merged
merged 2 commits into from
Jan 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ git clone https://github.com/Chamberpain/ARGONE.git
```
Or by downloading this package from the link above.

This will create a direction in whatever folder you were named ARGONE that will contain everything in this repository. I recommend using conda for package management and to create a new environment to run this code. Instruction for how to create a new environment in Conda can be found [here](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#creating-an-environment-with-commands). After activating your new environment, you will need to install some dependencies to run this code. If you are running conda, these dependencies can be installed with the following commands:
This will create a directory in whatever folder you were named ARGONE that will contain everything in this repository. I recommend using conda for package management and to create a new environment to run this code. Instruction for how to create a new environment in Conda can be found [here](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#creating-an-environment-with-commands). After activating your new environment, you will need to install some dependencies to run this code. If you are running conda, these dependencies can be installed with the following commands:
```
conda install ipython
conda install pandas
Expand All @@ -17,6 +17,16 @@ conda install -c conda-forge geopy
conda install shapely
conda install -c conda-forge folium
```
Alternatively, for installing dependancies using pip:
```
pip install ipython
pip install pandas
pip install scipy
pip install matplotlib
pip install geopy
pip install shapely
pip install folium
```
To test your code is working, type in the terminal
```
python main.py test 150
Expand Down
2 changes: 1 addition & 1 deletion TransGeo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from GeneralUtilities.Compute.list import find_nearest,flat_list,LonList,LatList,GeoList
from list import GeoList
import numpy as np
import geopy
import matplotlib.colors
Expand Down