├── .gitignore ├── 01_HelloWorld ├── README.md ├── deployment.pri ├── helloworld.pro ├── helloworld.py ├── main.cpp ├── main.qml ├── qml.qrc └── screenshot.png ├── 02_IntegrateWithArcPy ├── README.md ├── USA.gdb │ ├── a00000001.TablesByName.atx │ ├── a00000001.gdbindexes │ ├── a00000001.gdbtable │ ├── a00000001.gdbtablx │ ├── a00000002.gdbtable │ ├── a00000002.gdbtablx │ ├── a00000003.gdbindexes │ ├── a00000003.gdbtable │ ├── a00000003.gdbtablx │ ├── a00000004.CatItemsByPhysicalName.atx │ ├── a00000004.CatItemsByType.atx │ ├── a00000004.FDO_UUID.atx │ ├── a00000004.gdbindexes │ ├── a00000004.gdbtable │ ├── a00000004.gdbtablx │ ├── a00000004.spx │ ├── a00000005.CatItemTypesByName.atx │ ├── a00000005.CatItemTypesByParentTypeID.atx │ ├── a00000005.CatItemTypesByUUID.atx │ ├── a00000005.gdbindexes │ ├── a00000005.gdbtable │ ├── a00000005.gdbtablx │ ├── a00000006.CatRelsByDestinationID.atx │ ├── a00000006.CatRelsByOriginID.atx │ ├── a00000006.CatRelsByType.atx │ ├── a00000006.FDO_UUID.atx │ ├── a00000006.gdbindexes │ ├── a00000006.gdbtable │ ├── a00000006.gdbtablx │ ├── a00000007.CatRelTypesByBackwardLabel.atx │ ├── a00000007.CatRelTypesByDestItemTypeID.atx │ ├── a00000007.CatRelTypesByForwardLabel.atx │ ├── a00000007.CatRelTypesByName.atx │ ├── a00000007.CatRelTypesByOriginItemTypeID.atx │ ├── a00000007.CatRelTypesByUUID.atx │ ├── a00000007.gdbindexes │ ├── a00000007.gdbtable │ ├── a00000007.gdbtablx │ ├── a00000009.gdbindexes │ ├── a00000009.gdbtable │ ├── a00000009.gdbtablx │ ├── a00000009.spx │ ├── gdb │ └── timestamps ├── deployment.pri ├── integrateWithArcPy.pro ├── isWithin.py ├── main.cpp ├── main.qml ├── qml.qrc └── screenshot.png ├── 03_ElevationProfile ├── README.md ├── deployment.pri ├── elevationProfile.pro ├── elevationProfile.py ├── main.cpp ├── main.qml ├── qml.qrc ├── screenshot1.png └── screenshot2.png ├── 04_ExcelToFeatureService ├── PortalDialog.qml ├── README.md ├── cities.xlsx ├── deployment.pri ├── excelToFeatureService.pro ├── excelToFeatureService.py ├── main.cpp ├── main.qml ├── qml.qrc └── screenshot.png ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/.gitignore -------------------------------------------------------------------------------- /01_HelloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/01_HelloWorld/README.md -------------------------------------------------------------------------------- /01_HelloWorld/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/01_HelloWorld/deployment.pri -------------------------------------------------------------------------------- /01_HelloWorld/helloworld.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/01_HelloWorld/helloworld.pro -------------------------------------------------------------------------------- /01_HelloWorld/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/01_HelloWorld/helloworld.py -------------------------------------------------------------------------------- /01_HelloWorld/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/01_HelloWorld/main.cpp -------------------------------------------------------------------------------- /01_HelloWorld/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/01_HelloWorld/main.qml -------------------------------------------------------------------------------- /01_HelloWorld/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/01_HelloWorld/qml.qrc -------------------------------------------------------------------------------- /01_HelloWorld/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/01_HelloWorld/screenshot.png -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/README.md -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000001.TablesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000001.TablesByName.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000001.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000001.gdbindexes -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000001.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000001.gdbtable -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000001.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000001.gdbtablx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000002.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000002.gdbtable -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000002.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000002.gdbtablx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000003.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000003.gdbindexes -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000003.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000003.gdbtable -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000003.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000003.gdbtablx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000004.CatItemsByPhysicalName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000004.CatItemsByPhysicalName.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000004.CatItemsByType.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000004.CatItemsByType.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000004.FDO_UUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000004.FDO_UUID.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000004.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000004.gdbindexes -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000004.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000004.gdbtable -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000004.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000004.gdbtablx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000004.spx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000004.spx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000005.CatItemTypesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000005.CatItemTypesByName.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000005.CatItemTypesByParentTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000005.CatItemTypesByParentTypeID.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000005.CatItemTypesByUUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000005.CatItemTypesByUUID.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000005.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000005.gdbindexes -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000005.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000005.gdbtable -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000005.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000005.gdbtablx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000006.CatRelsByDestinationID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000006.CatRelsByDestinationID.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000006.CatRelsByOriginID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000006.CatRelsByOriginID.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000006.CatRelsByType.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000006.CatRelsByType.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000006.FDO_UUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000006.FDO_UUID.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000006.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000006.gdbindexes -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000006.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000006.gdbtable -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000006.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000006.gdbtablx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByBackwardLabel.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByBackwardLabel.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByDestItemTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByDestItemTypeID.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByForwardLabel.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByForwardLabel.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByName.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByOriginItemTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByOriginItemTypeID.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByUUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000007.CatRelTypesByUUID.atx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000007.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000007.gdbindexes -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000007.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000007.gdbtable -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000007.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000007.gdbtablx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000009.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000009.gdbindexes -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000009.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000009.gdbtable -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000009.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000009.gdbtablx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/a00000009.spx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/a00000009.spx -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/gdb: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/USA.gdb/timestamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/USA.gdb/timestamps -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/deployment.pri -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/integrateWithArcPy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/integrateWithArcPy.pro -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/isWithin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/isWithin.py -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/main.cpp -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/main.qml -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/qml.qrc -------------------------------------------------------------------------------- /02_IntegrateWithArcPy/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/02_IntegrateWithArcPy/screenshot.png -------------------------------------------------------------------------------- /03_ElevationProfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/03_ElevationProfile/README.md -------------------------------------------------------------------------------- /03_ElevationProfile/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/03_ElevationProfile/deployment.pri -------------------------------------------------------------------------------- /03_ElevationProfile/elevationProfile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/03_ElevationProfile/elevationProfile.pro -------------------------------------------------------------------------------- /03_ElevationProfile/elevationProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/03_ElevationProfile/elevationProfile.py -------------------------------------------------------------------------------- /03_ElevationProfile/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/03_ElevationProfile/main.cpp -------------------------------------------------------------------------------- /03_ElevationProfile/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/03_ElevationProfile/main.qml -------------------------------------------------------------------------------- /03_ElevationProfile/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/03_ElevationProfile/qml.qrc -------------------------------------------------------------------------------- /03_ElevationProfile/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/03_ElevationProfile/screenshot1.png -------------------------------------------------------------------------------- /03_ElevationProfile/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/03_ElevationProfile/screenshot2.png -------------------------------------------------------------------------------- /04_ExcelToFeatureService/PortalDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/04_ExcelToFeatureService/PortalDialog.qml -------------------------------------------------------------------------------- /04_ExcelToFeatureService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/04_ExcelToFeatureService/README.md -------------------------------------------------------------------------------- /04_ExcelToFeatureService/cities.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/04_ExcelToFeatureService/cities.xlsx -------------------------------------------------------------------------------- /04_ExcelToFeatureService/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/04_ExcelToFeatureService/deployment.pri -------------------------------------------------------------------------------- /04_ExcelToFeatureService/excelToFeatureService.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/04_ExcelToFeatureService/excelToFeatureService.pro -------------------------------------------------------------------------------- /04_ExcelToFeatureService/excelToFeatureService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/04_ExcelToFeatureService/excelToFeatureService.py -------------------------------------------------------------------------------- /04_ExcelToFeatureService/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/04_ExcelToFeatureService/main.cpp -------------------------------------------------------------------------------- /04_ExcelToFeatureService/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/04_ExcelToFeatureService/main.qml -------------------------------------------------------------------------------- /04_ExcelToFeatureService/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/04_ExcelToFeatureService/qml.qrc -------------------------------------------------------------------------------- /04_ExcelToFeatureService/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/04_ExcelToFeatureService/screenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldanzinger/PyOtherSideForArcGIS/HEAD/README.md --------------------------------------------------------------------------------