GIS5103 - Module 6 - Working With Geometries.
For Module 6, we were tasked with the following objectives: • Create a search cursor to iterate over shapefile geometries. • Demonstrate the ability to write vertices of a geometry to a text file. • Contrast the different objects using in parsing over geometries within a script. I had the hardest part of writing this script was writing the nested loop part due to indentation. I had the problem where it was only generating 5 lines of code instead of the 247 lines of code needed to complete the assignment. I had to learn to fix the indentation so the for loop would be nested inside the initial for loop. I also learned to use the .strip line which removes all leading and trailing whitespace from the string line. My pseudocode is below, which helped me understand it better after writing the co...