Skip to content

Commit

Permalink
Merge pull request #48 from TUDelft-CITG/feature/reorganize-lock-and-…
Browse files Browse the repository at this point in the history
…properties

Feature/reorganize lock and properties
  • Loading branch information
SiggyF committed Aug 29, 2022
2 parents e638646 + c0c10e6 commit aaab1b1
Show file tree
Hide file tree
Showing 26 changed files with 4,131 additions and 3,864 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,5 +1,6 @@
# generated files
fis_cache
requests_cache.sqlite
# generated by example notebook
book/config.json
book/examples/*
Expand Down
6 changes: 4 additions & 2 deletions Dockerfile
Expand Up @@ -2,11 +2,13 @@
FROM continuumio/miniconda3

# Install conda stuff first
RUN conda install nomkl pyproj gdal
# install gdal library
RUN conda install nomkl pyproj
RUN conda install -c conda-forge gdal nomkl

WORKDIR /OpenTNSim
ADD . /OpenTNSim

RUN pip install --upgrade pip
# Install the application
RUN pip install -e .
# and the testing dependencies
Expand Down
3 changes: 2 additions & 1 deletion environment.yml
Expand Up @@ -21,6 +21,7 @@ dependencies:
- jupyter=1
- notebook=6
- jupyterlab=3
- ipyleaflet
- ipython=7
- matplotlib=3
- pint=0.18
Expand All @@ -41,4 +42,4 @@ dependencies:
- gdal=3

- pip:
- simpy
- simpy
760 changes: 482 additions & 278 deletions notebooks/Example 07 - Using actual graphs and graph_module.py.ipynb

Large diffs are not rendered by default.

360 changes: 170 additions & 190 deletions notebooks/Example 17 - Lock.ipynb

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions notebooks/Shape-Files/README.md
@@ -0,0 +1,7 @@
# Shape files
This directory contains three example shape files that are used for examples. Please do not add new ones to this directory because we want to keep the git repository for code only. You can use cloud buckets or zenodo to store larger datasets.

The examples networks include:
- Amsterdam canal network, interesting for in city problems (last mile, electric ships)
- Rottterdam - Antwerpen, interesting for inter city problems (port to port, locks)
-
371 changes: 371 additions & 0 deletions notebooks/broken/Example load digital twin scenario.ipynb

Large diffs are not rendered by default.

0 comments on commit aaab1b1

Please sign in to comment.