Changes between Version 27 and Version 28 of GSoC/2017/IntegrationOfPDALintoGRASSGIS
- Timestamp:
- 07/08/17 12:22:40 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GSoC/2017/IntegrationOfPDALintoGRASSGIS
v27 v28 88 88 - Discussed this approach with my mentor and we talked about a few more issues beyond just the pipeline approach. 89 89 90 - Added v.in.pdal to a new public github repository. (https://github. ncsu.edu/ptschrum/v_in_pdal) As of 6/9/2017 this repository is just a copy of what is in the main svn repo for v.in.pdal. All changes will be pushed from my local machine to the github repository.90 - Added v.in.pdal to a new public github repository. (https://github.com/PaulSchrum/v_in_pdal) As of 6/9/2017 this repository is just a copy of what is in the main svn repo for v.in.pdal. All changes will be pushed from my local machine to the github repository. 91 91 92 92 2. What do you plan on doing next week? … … 134 134 1. What did you get done this week? 135 135 136 Achieved my goal of getting basic functionality to work. Specifically, the code now takes an input file name and an output file name via GRASS v.in.pdal and uses pdal to create the output file using a pipeline json string (created in memory only). At this point I have only tested this on pdal’s test file, 100-points.las from their github page. Further, I have only run the conversion to .txt format. But it is happening in GRASS code. Link to last commit: https://github.ncsu.edu/ptschrum/v_in_pdal/commit/9f20105628decae639d5e4752235b68dbf86d02b136 Achieved my goal of getting basic functionality to work. Specifically, the code now takes an input file name and an output file name via GRASS v.in.pdal and uses pdal to create the output file using a pipeline json string (created in memory only). At this point I have only tested this on pdal’s test file, 100-points.las from their github page. Further, I have only run the conversion to .txt format. But it is happening in GRASS code. 137 137 138 138 2. What do you plan on doing next week? … … 155 155 1. What did you get done this week? 156 156 157 a. With my mentor's help, resolved the problem with the .o files not linking. Accomplishing this included adding the Makefile to the git repo. (It was not added originally because I inadvertently had Makefile listed in .gitignore, so I also removed that. Link to Commit)157 a. With my mentor's help, resolved the problem with the .o files not linking. Accomplishing this included adding the Makefile to the git repo. (It was not added originally because I inadvertently had Makefile listed in .gitignore, so I also removed that. [https://github.com/PaulSchrum/v_in_pdal/commit/ac59163c3fcbac6fb714621b68e7c8300b869ba9 Link to Commit]) 158 158 159 159 b. Refactored function basicReaderWriter from dwelling in main.cpp to being found as a static function in the pipelinejson class. Commit