-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from changliao1025/development
Development
- Loading branch information
Showing
5 changed files
with
39 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
########################### | ||
Frequently Asked Questions | ||
########################### | ||
|
||
1. Why my `conda` cannot create environment? | ||
|
||
Turn off the VPN or bypass it. | ||
|
||
2. Why import `GDAL` failed? | ||
|
||
Consider using the `conda-forge` channel. | ||
|
||
3. `proj` related issue https://github.com/OSGeo/gdal/issues/1546, | ||
|
||
Make sure you correctly set up the `PROJ_LIB` | ||
|
||
Because the `GDAL` library is used by this project and the `proj` library is often not configured correctly automatically. | ||
On Linux or Mac, you can set it up using the `.bash_profile` such as: | ||
|
||
Anaconda: | ||
|
||
`export PROJ_LIB=/people/user/.conda/envs/hexwatershed/share/proj` | ||
|
||
Miniconda: | ||
|
||
`export PROJ_LIB=/opt/miniconda3/envs/hexwatershed/share/proj` | ||
|
||
4. What if my model doesn't produce the correct or expected answer? | ||
|
||
Answer: There are several hidden assumptions within the workflow. For example, if you provide the DEM and river network for two different regions, the program won't be able to tell you that. A visual inspection of your data is important. | ||
|
||
Optionally, you can turn on the `iFlag_debug` option in the configuration file to output the `intermediate files`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ Welcome to pyflowline's documentation! | |
support | ||
contribution | ||
api/api | ||
faq | ||
authors | ||
|
||
Addendum | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters