-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop'
- Loading branch information
Showing
4 changed files
with
20 additions
and
5 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
@author: bus | ||
@contact: [email protected] | ||
@company: Esri | ||
@version: 1.0.0 | ||
@version: 1.3.0 | ||
@description: Photo Survey Tool to load photos | ||
@requirements: Python 2.7.x or higher, ArcGIS 10.2, 10.3.x, 10.4 (also ArcGIS Pro) | ||
@copyright: Esri, 2015 | ||
|
@@ -523,7 +523,7 @@ def shift_photopoints(in_features, x_shift=None, y_shift=None): | |
if CameraInput == 'Associate Geotagged Photo with Point (photo has location)': | ||
|
||
arcpy.AddMessage("Step 3: Adding application required fields") | ||
arcpy.AddField_management(ParcelPointHelper, "BSTPHOTOID", "TEXT", "", "", "5", "Best Photo Identifier", "NULLABLE", "NON_REQUIRED", "") | ||
arcpy.AddField_management(ParcelPointHelper, "BSTPHOTOID", "TEXT", "", "", "25", "Best Photo Identifier", "NULLABLE", "NON_REQUIRED", "") | ||
arcpy.AddField_management(ParcelPointHelper, "SRVNAME", "TEXT", "", "", "25", "Surveyor Name", "NULLABLE", "NON_REQUIRED", "") | ||
arcpy.AddMessage("Step 4: Finalizing photo survey feature class") | ||
arcpy.AddMessage("Step 5: Creating Photo Attachments") | ||
|
@@ -548,7 +548,7 @@ def shift_photopoints(in_features, x_shift=None, y_shift=None): | |
|
||
|
||
arcpy.AddMessage("Step 3: Adding application required fields") | ||
arcpy.AddField_management(ParcelPointHelper, "BSTPHOTOID", "TEXT", "", "", "5", "Best Photo Identifier", "NULLABLE", "NON_REQUIRED", "") | ||
arcpy.AddField_management(ParcelPointHelper, "BSTPHOTOID", "TEXT", "", "", "25", "Best Photo Identifier", "NULLABLE", "NON_REQUIRED", "") | ||
arcpy.AddField_management(ParcelPointHelper, "SRVNAME", "TEXT", "", "", "25", "Surveyor Name", "NULLABLE", "NON_REQUIRED", "") | ||
arcpy.AddMessage("Step 4: Finalizing photo survey feature class") | ||
arcpy.AddMessage("Step 5: Creating Photo Attachments") | ||
|
@@ -613,7 +613,7 @@ def shift_photopoints(in_features, x_shift=None, y_shift=None): | |
arcpy.AddMessage("Step 10: Cleaning up staging geodatabase") | ||
|
||
arcpy.AddMessage("Step 11: Adding application required fields") | ||
arcpy.AddField_management(ParcelPointHelper, "BSTPHOTOID", "TEXT", "", "", "5", "Best Photo Identifier", "NULLABLE", "NON_REQUIRED", "") | ||
arcpy.AddField_management(ParcelPointHelper, "BSTPHOTOID", "TEXT", "", "", "25", "Best Photo Identifier", "NULLABLE", "NON_REQUIRED", "") | ||
arcpy.AddField_management(ParcelPointHelper, "SRVNAME", "TEXT", "", "", "25", "Surveyor Name", "NULLABLE", "NON_REQUIRED", "") | ||
arcpy.AddMessage("Step 12: Finalizing photo survey feature class") | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters