-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
first changes to make the docker works with #5
Changes from 6 commits
c835ade
2189026
fffeea4
3629dae
18da04f
12f51d7
d68255e
554691a
1b35a29
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,16 +19,30 @@ defaults: | |
- _self_ | ||
|
||
filepath: | ||
SHAPEFILE_PATH: null # shapefile for lidar selecter, to determine the lidar file to select | ||
SHP_NAME: null # name of the shapefile for lidar selecter, to determine the lidar file to select | ||
SHP_DIRECTORY: null # path to the directory containing the shapefile | ||
DONOR_DIRECTORY: null # directory containing all potential donor lidar files, for lidar selecter | ||
RECIPIENT_DIRECTORY: null # directory containing all potential donor lidar files, for lidar selecter | ||
OUTPUT_DIRECTORY_PATH: null # directory containing all potential donor lidar files, for lidar selecter | ||
RECIPIENT_FILE: null # path to the file that receives points. If done after lidar selecter, is in a subdirectory of OUTPUT_DIRECTORY_PATH | ||
DONOR_FILE: null # path to the file that gives points. If done after lidar selecter, is in a subdirectory of OUTPUT_DIRECTORY_PATH | ||
OUTPUT_FILE: null # path to the (resulting) file with added points. | ||
INPUT_INDICES_MAP: null # path for the indices map reflecting the changes to the recipient | ||
OUTPUT_INDICES_MAP: null | ||
CSV_PATH: null # path to the csv file that log the lidar files to process with patchwork | ||
OUTPUT_DIRECTORY: null # directory containing all potential donor lidar files, for lidar selecter | ||
|
||
# OUTPUT_FILE: null # path to the (resulting) file with added points. | ||
leavauchier marked this conversation as resolved.
Show resolved
Hide resolved
|
||
OUTPUT_DIR: null # directory of the file with added points, from patchwork. | ||
OUTPUT_NAME: null # name of the file with added points, from patchwork. | ||
|
||
INPUT_INDICES_MAP_DIR: null | ||
INPUT_INDICES_MAP_NAME: null | ||
|
||
OUTPUT_INDICES_MAP_DIR: null # path to the directory for the indices map reflecting the changes to the recipient, from patchwork | ||
OUTPUT_INDICES_MAP_NAME: null # name of the indices map reflecting the changes to the recipient, from patchwork | ||
|
||
# INPUT_DIRECTORY: null # directory for input (shapefile) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. code commenté à enlever There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. up There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. up |
||
CSV_NAME: null # name of the csv file that log the lidar files to process with patchwork | ||
CSV_DIRECTORY: null # path to the directory that will contain the csv | ||
|
||
DONOR_NAME: null # name of the donor file for patchwork | ||
RECIPIENT_NAME: null # name of the recipient file for patchwork | ||
|
||
|
||
|
||
CRS: 2154 | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
# for selecting, cutting and dispatching lidar files for patchwork | ||
python lidar_filepath.py \ | ||
filepath.SHAPEFILE_PATH=[path_to_shapfile] \ | ||
filepath.DONOR_DIRECTORY=[path_to_directory_with_donor_files] \ | ||
filepath.RECIPIENT_DIRECTORY=[path_to_directory_with_recipient_files] \ | ||
filepath.OUTPUT_DIRECTORY_PATH=[output_directory_path] | ||
filepath.SHP_NAME=[shapefile_name] \ | ||
filepath.SHP_DIRECTORY=[path_to_shapefile_file] \ | ||
filepath.CSV_NAME=[csv_file_name] \ | ||
filepath.CSV_DIRECTORY=[path_to_csv_file] \ | ||
filepath.OUTPUT_DIRECTORY=[output_directory_path] | ||
|
||
# filepath.SHAPEFILE_PATH: the shapefile that contains the geometry we want to work on | ||
# filepath.DONOR_DIRECTORY: The directory containing all the lidar files that could provide points | ||
# filepath.RECIPIENT_DIRECTORY: The directory containing all the lidar files that could receive points | ||
# filepath.OUTPUT_DIRECTORY_PATH: the directory to put all the selected/cut lidar files | ||
# filepath.SHP_NAME: the name of the shapefile defining the area used to select the lidar files | ||
# filepath.SHP_DIRECTORY: the directory of the shapefile | ||
# filepath.CSV_NAME: the name of the csv file tin which we link donor and recipient files | ||
# filepath.CSV_DIRECTORY: the directory of the csv file | ||
# filepath.OUTPUT_DIRECTORY: the directory to put all the cut lidar files | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
# for selecting, cutting and dispatching lidar files for patchwork | ||
python main.py \ | ||
|
||
filepath.DONOR_FILE=[donor_file_path] | ||
filepath.RECIPIENT_FILE=[recipient_file_path] | ||
filepath.OUTPUT_FILE=[output_file_path] | ||
filepath.OUTPUT_INDICES_MAP=[output_indices_map_path] | ||
filepath.DONOR_DIRECTORY=[donor_file_dir] | ||
filepath.DONOR_NAME=[donor_file_name] | ||
filepath.RECIPIENT_DIRECTORY=[recipient_file_dir] | ||
filepath.RECIPIENT_NAME=[recipient_file_name] | ||
filepath.OUTPUT_DIR=[output_file_dir] | ||
filepath.OUTPUT_NAME=[output_file_name] | ||
filepath.OUTPUT_INDICES_MAP_DIR=[output_indices_map_dir] | ||
filepath.OUTPUT_INDICES_MAP_NAME=[output_indices_map_name] | ||
|
||
# filepath.DONOR_FILE: the path to the lidar file we will add points from | ||
# filepath.RECIPIENT_FILE: the path to the lidar file we will add points to | ||
# filepath.OUTPUT_FILE: the path to the resulting lidar file | ||
# filepath.OUTPUT_INDICES_MAP: the path to the map with indices displaying where points have been added | ||
# filepath.DONOR_DIRECTORY: the directory to the lidar file we will add points from | ||
# filepath.DONOR_NAME: the name of the lidar file we will add points from | ||
# filepath.RECIPIENT_DIRECTORY: the directory to the lidar file we will add points to | ||
# filepath.RECIPIENT_NAME: the name of the lidar file we will add points to | ||
# filepath.OUTPUT_DIR: the directory to the resulting lidar file | ||
# filepath.OUTPUT_NAME: the directory of the resulting lidar file | ||
# filepath.OUTPUT_INDICES_MAP_DIR: the directory to the map with indices displaying where points have been added | ||
# filepath.OUTPUT_INDICES_MAP_NAME: the name of the map with indices displaying where points have been added |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo :