Skip to content

Commit

Permalink
Change Python to src in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
MatRouillard committed Nov 7, 2024
1 parent b41bff9 commit 61e5b48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Documentation/user-doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ If changes are required, they should be made consistently across the different f
The script can be run with this command:

```cmd
python Python\Assessment\data_integration.py
python src\Assessment\data_integration.py
```

Or directly by running the script in an IDE of choice.
Expand Down Expand Up @@ -305,7 +305,7 @@ Other variables can also be changed, but this is not recommended, especially sin
As with the previous script, this script can be run with this command:

```cmd
python Python\Assessment\quality_assessment.py
python src\Assessment\quality_assessment.py
```

Or directly by running the script in an IDE of choice.
Expand All @@ -318,7 +318,7 @@ Calculating everything may take some time, but the results will be printed to th
To run the application, since the requirements are already downloaded, one can simply use this command:

```
shiny run .\Python\Web\Dashboard\app.py
shiny run .\src\Web\Dashboard\app.py
```

Then, open your browser and navigate to [http://127.0.0.1:8000](http://127.0.0.1:8000).
Expand Down
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ This file is used in all scripts, whether for quality assessment or the dashboar

### Download data

Use the [data_integration.py](Python\Assessment\data_integration.py) file to download and integrate OSM and OMF data:
Use the [data_integration.py](src/Assessment/data_integration.py) file to download and integrate OSM and OMF data:

```cmd
python Python\Assessment\data_integration.py
python src\Assessment\data_integration.py
```

It uses the file containing the bounding box: [bboxs.json](./Data/bboxs.json).
Expand All @@ -136,7 +136,7 @@ It is contained in the [quality_assessment.py](./src/Assessment/quality_assessme
To run this script:

```cmd
python Python\Assessment\quality_assessment.py
python src\Assessment\quality_assessment.py
```

This script will create layers in the database for the visible ones and also a summary result.
Expand Down

0 comments on commit 61e5b48

Please sign in to comment.