-
Notifications
You must be signed in to change notification settings - Fork 42
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 #48 from aerispaha/geojson
Improved import pattern, coordinate ref system support
- Loading branch information
Showing
22 changed files
with
2,003 additions
and
788 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,6 @@ __pycache__/ | |
.cache/ | ||
.pytest_cache/ | ||
_build/ | ||
|
||
# IDE Stuff | ||
*.idea/ |
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
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 |
---|---|---|
@@ -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 * |
Oops, something went wrong.