aerispaha / sewergraph

Network analysis for sewer systems
18 stars 4 forks source link

Fix installation process, especially when ArcGIS is involved #11

Open aerispaha opened 6 years ago

aerispaha commented 6 years ago

Ensure that installation happens smoothly, even when users' machines have ArcMap installed.

Currently, installation works by first installing GeoPandas in a clean environment:

$ (myenv) conda install geopandas
$ (myenv) pip install sewergraph
ppierdo commented 6 years ago

Hi Adam, I have this account from a few years ago when I was helping out with Code for Philly, but I never really made a lot of use of it and, frankly, always found this interface rather confusing. I'll try to figure out what I can, but just a heads up that sometimes I may ask to be walked through some steps. Thanks

aerispaha commented 6 years ago

@ppierdo, no worries! I'm still getting used to it too. If you want to share any scripts that your having trouble with, you can copy/paste them in a comment. And to be fancy about it, you can paste your code in between tick marks like so:

```python G = sg.graph_from_shp('path/') G = analyze_downstream(G, parameter='capacity_per_ac') ```

and it will be rendered in your comment nicely like this:

G = sg.graph_from_shp('path/')
G = analyze_downstream(G, parameter='capacity_per_ac')