├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── lint.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── environment.yml ├── notebooks ├── Add Field Maps App ID to ArcGIS Enterprise.ipynb ├── Add GPS Metadata Fields.ipynb ├── Add GPS Metadata Fields_FS.ipynb ├── Add Offset Metadata Fields.ipynb ├── Bulk Update Maps for Use in Collector or Field Maps.ipynb ├── Configure Search.ipynb ├── Create Offline Areas from Feature Layer.ipynb ├── Field Apps Deployment Using Python.ipynb ├── Find features with missing attachments.ipynb ├── Generate PDF Report │ ├── Generate PDF Report.ipynb │ ├── example-report.pdf │ └── report-template.html ├── Location Sharing Status.ipynb ├── Manage Map Areas with Group and Index.ipynb ├── Offline Checks.ipynb ├── Proxy Esri Basemaps for ArcGIS Enterprise Offline Map Areas.ipynb └── Watermark photo attachments with Exif data.ipynb ├── readmes ├── copy_form_between_maps.md └── download_attachments.md └── scripts ├── copy_form_between_maps.py └── download_attachments.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/Add Field Maps App ID to ArcGIS Enterprise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Add Field Maps App ID to ArcGIS Enterprise.ipynb -------------------------------------------------------------------------------- /notebooks/Add GPS Metadata Fields.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Add GPS Metadata Fields.ipynb -------------------------------------------------------------------------------- /notebooks/Add GPS Metadata Fields_FS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Add GPS Metadata Fields_FS.ipynb -------------------------------------------------------------------------------- /notebooks/Add Offset Metadata Fields.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Add Offset Metadata Fields.ipynb -------------------------------------------------------------------------------- /notebooks/Bulk Update Maps for Use in Collector or Field Maps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Bulk Update Maps for Use in Collector or Field Maps.ipynb -------------------------------------------------------------------------------- /notebooks/Configure Search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Configure Search.ipynb -------------------------------------------------------------------------------- /notebooks/Create Offline Areas from Feature Layer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Create Offline Areas from Feature Layer.ipynb -------------------------------------------------------------------------------- /notebooks/Field Apps Deployment Using Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Field Apps Deployment Using Python.ipynb -------------------------------------------------------------------------------- /notebooks/Find features with missing attachments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Find features with missing attachments.ipynb -------------------------------------------------------------------------------- /notebooks/Generate PDF Report/Generate PDF Report.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Generate PDF Report/Generate PDF Report.ipynb -------------------------------------------------------------------------------- /notebooks/Generate PDF Report/example-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Generate PDF Report/example-report.pdf -------------------------------------------------------------------------------- /notebooks/Generate PDF Report/report-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Generate PDF Report/report-template.html -------------------------------------------------------------------------------- /notebooks/Location Sharing Status.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Location Sharing Status.ipynb -------------------------------------------------------------------------------- /notebooks/Manage Map Areas with Group and Index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Manage Map Areas with Group and Index.ipynb -------------------------------------------------------------------------------- /notebooks/Offline Checks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Offline Checks.ipynb -------------------------------------------------------------------------------- /notebooks/Proxy Esri Basemaps for ArcGIS Enterprise Offline Map Areas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Proxy Esri Basemaps for ArcGIS Enterprise Offline Map Areas.ipynb -------------------------------------------------------------------------------- /notebooks/Watermark photo attachments with Exif data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/notebooks/Watermark photo attachments with Exif data.ipynb -------------------------------------------------------------------------------- /readmes/copy_form_between_maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/readmes/copy_form_between_maps.md -------------------------------------------------------------------------------- /readmes/download_attachments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/readmes/download_attachments.md -------------------------------------------------------------------------------- /scripts/copy_form_between_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/scripts/copy_form_between_maps.py -------------------------------------------------------------------------------- /scripts/download_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/field-maps-scripts/HEAD/scripts/download_attachments.py --------------------------------------------------------------------------------