Skip to content

Commit

Permalink
fixed rendering of code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
aedawid committed Sep 11, 2023
1 parent 0729cba commit 331efe4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions IntroPhotogrammetry/OpenDroneMap/03-ODM-georeferencing.md
Original file line number Diff line number Diff line change
Expand Up @@ -632,14 +632,12 @@ for i in `cat list`; do k=`echo $i | awk -F"." '{print $1}'`; n=`cat representat
1. Download the Python script `identify_gcp_id.py` from the repo and place it in the location of your SOFTWARE or TOOLS for geospatial analysis (e.g., `project/<account>/<user>/TOOLS`):
```
cd project/<account>/<user>/TOOLS
git clone /geo_utils
```

2. Make sure you navigate back to the `representative` directory in your photogrammetry project. You can softlink the `identify_gcp_id.py` script for easy use:
```
cd project/<account>/<user>/ODM/<project_X>/IMAGES/representative
ln -s project/<account>/<user>/TOOLS/geo_utils/identify_gcp_id.py ./
```

Expand All @@ -652,7 +650,6 @@ for i in `cat list`; do k=`echo $i | awk -F"." '{print $1}'`; n=`cat representat

```
python identify_gcp_id.py GCP_reference.txt > matching_results
grep "Match" < matching results | sort -nk4 > ID_matches
cat ID_matches
```
Expand All @@ -677,7 +674,6 @@ for i in `cat list`; do k=`echo $i | awk -F"." '{print $1}'`; n=`cat representat
```
awk '{print $4"_"$14}' < ID_matches > ../tmp
cd ../ # navigate to the IMAGES dir with the GCP_reference.file
for i in `cat tmp`
do
old=`echo $i | awk -F"_" '{print $1}'`
Expand Down

0 comments on commit 331efe4

Please sign in to comment.