Skip to content

Commit

Permalink
Merge pull request #48 from aerispaha/geojson
Browse files Browse the repository at this point in the history
Improved import pattern, coordinate ref system support
  • Loading branch information
aerispaha authored Mar 15, 2019
2 parents 20c5e05 + e8fd4f2 commit 38b4ad9
Show file tree
Hide file tree
Showing 22 changed files with 2,003 additions and 788 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ __pycache__/
.cache/
.pytest_cache/
_build/

# IDE Stuff
*.idea/
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@ language: python
python:
- "2.7"
- "3.6"
# - "3.7"

# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
# command to install dependencies
install:
- pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ For example, climate change impacts can be investigated by creating a set of mod
import os, shutil
import swmmio
from swmmio.utils.modify_model import replace_inp_section
from swmmio.utils.dataframes import create_dataframeINP
from swmmio import create_dataframeINP

#initialize a baseline model object
baseline = swmmio.Model(r'path\to\baseline.inp')
Expand Down
8 changes: 5 additions & 3 deletions swmmio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
from swmmio import *
from swmmio.utils.dataframes import create_dataframeBI, create_dataframeRPT, create_dataframeINP
from .core import *
import swmmio.core as swmmio
'''Python SWMM Input/Output Tools'''


VERSION_INFO = (0, 3, 2)
VERSION_INFO = (0, 3, 4)
__version__ = '.'.join(map(str, VERSION_INFO))
__author__ = 'Adam Erispaha'
__copyright__ = 'Copyright (c) 2016'
__licence__ = ''

from .swmmio import *
Loading

0 comments on commit 38b4ad9

Please sign in to comment.