├── .gitattributes ├── .gitignore ├── .ipynb_checkpoints └── Field Options List-checkpoint.ipynb ├── .prj ├── Box_and_Whisker ├── BoxAndWhisker.py └── Toolbox.tbx ├── Change_over_time ├── DetectChange.tbx └── change_over_time.py ├── Charge_Balance ├── Toolbox.tbx ├── charge_balance.py └── charge_balance_cb_only.py ├── CrossSectionTool ├── ElevProf.py └── ElevProf0.py ├── Field Options List.ipynb ├── LICENSE ├── Line_Orientation ├── Line_Orientation.tbx └── line_orientation.py ├── PLSS ├── CAD_TO_LATLONG.py ├── CAD_TO_UTM.py ├── CreateCustomGrid.py ├── CreateQLabels.py ├── CreateQQLabels.py ├── CreateQQSections.py ├── CreateQSections.py ├── CustomGridTools.tbx ├── TRS.py ├── TRS_MODEL_NO_SDE.py ├── TRS_Model.py └── USGS_COORD.tbx ├── Piper ├── Example.gdb.zip ├── Example.gdb │ └── Example.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.freelist │ │ ├── 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.freelist │ │ ├── a00000009.gdbindexes │ │ ├── a00000009.gdbtable │ │ ├── a00000009.gdbtablx │ │ ├── a00000009.spx │ │ ├── gdb │ │ └── timestamps ├── Piper.tbx ├── Piper.zip ├── Piper │ └── Piper │ │ ├── Example.gdb.zip │ │ ├── Piper.tbx │ │ ├── out.pdf │ │ └── piper2.py ├── out.pdf ├── piper.py ├── piper2.py └── piper_excel.py ├── PourPuff.tbx ├── PourousPuff.py ├── PourousPuff2.py ├── PourousPuff3.py ├── README.md ├── Stiff.zip ├── Stiff ├── .ipynb_checkpoints │ └── Untitled-checkpoint.ipynb ├── Example.gdb.zip ├── Stiff.JPG ├── Stiff.tbx └── StiffGEOfeat.py ├── Theis.zip ├── Theis └── Theis │ ├── Theis.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 │ ├── a0000000a.gdbindexes │ ├── a0000000a.gdbtable │ ├── a0000000a.gdbtablx │ ├── a0000000a.spx │ ├── a0000000b.gdbindexes │ ├── a0000000b.gdbtable │ ├── a0000000b.gdbtablx │ ├── a0000000c.gdbindexes │ ├── a0000000c.gdbtable │ ├── a0000000c.gdbtablx │ ├── a0000000d.band_index.atx │ ├── a0000000d.blk_key_index.atx │ ├── a0000000d.col_index.atx │ ├── a0000000d.gdbindexes │ ├── a0000000d.gdbtable │ ├── a0000000d.gdbtablx │ ├── a0000000d.row_index.atx │ ├── a0000000e.gdbindexes │ ├── a0000000e.gdbtable │ ├── a0000000e.gdbtablx │ ├── gdb │ └── timestamps │ ├── Toolbox.tbx │ └── theis.py ├── Transposer ├── Toolbox.tbx ├── Transposer.py └── Transposer_No_Pandas.py ├── graphexamples.csv ├── hydrograph ├── figure_60.png └── hydrograph.py ├── map_Clean.py ├── paramgroup dict.py ├── populate_fields_via_filename.py ├── prism ├── PRISM (2).py ├── PRISM2.py ├── PRISM_downsample.py ├── PRISM_zonal.py ├── PRISM_zonal2.py ├── PRISM_zonal3.py └── prism.py └── zonal_extractor.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/.gitignore -------------------------------------------------------------------------------- /.ipynb_checkpoints/Field Options List-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/.ipynb_checkpoints/Field Options List-checkpoint.ipynb -------------------------------------------------------------------------------- /.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/.prj -------------------------------------------------------------------------------- /Box_and_Whisker/BoxAndWhisker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Box_and_Whisker/BoxAndWhisker.py -------------------------------------------------------------------------------- /Box_and_Whisker/Toolbox.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Box_and_Whisker/Toolbox.tbx -------------------------------------------------------------------------------- /Change_over_time/DetectChange.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Change_over_time/DetectChange.tbx -------------------------------------------------------------------------------- /Change_over_time/change_over_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Change_over_time/change_over_time.py -------------------------------------------------------------------------------- /Charge_Balance/Toolbox.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Charge_Balance/Toolbox.tbx -------------------------------------------------------------------------------- /Charge_Balance/charge_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Charge_Balance/charge_balance.py -------------------------------------------------------------------------------- /Charge_Balance/charge_balance_cb_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Charge_Balance/charge_balance_cb_only.py -------------------------------------------------------------------------------- /CrossSectionTool/ElevProf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/CrossSectionTool/ElevProf.py -------------------------------------------------------------------------------- /CrossSectionTool/ElevProf0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/CrossSectionTool/ElevProf0.py -------------------------------------------------------------------------------- /Field Options List.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Field Options List.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/LICENSE -------------------------------------------------------------------------------- /Line_Orientation/Line_Orientation.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Line_Orientation/Line_Orientation.tbx -------------------------------------------------------------------------------- /Line_Orientation/line_orientation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Line_Orientation/line_orientation.py -------------------------------------------------------------------------------- /PLSS/CAD_TO_LATLONG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/CAD_TO_LATLONG.py -------------------------------------------------------------------------------- /PLSS/CAD_TO_UTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/CAD_TO_UTM.py -------------------------------------------------------------------------------- /PLSS/CreateCustomGrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/CreateCustomGrid.py -------------------------------------------------------------------------------- /PLSS/CreateQLabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/CreateQLabels.py -------------------------------------------------------------------------------- /PLSS/CreateQQLabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/CreateQQLabels.py -------------------------------------------------------------------------------- /PLSS/CreateQQSections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/CreateQQSections.py -------------------------------------------------------------------------------- /PLSS/CreateQSections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/CreateQSections.py -------------------------------------------------------------------------------- /PLSS/CustomGridTools.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/CustomGridTools.tbx -------------------------------------------------------------------------------- /PLSS/TRS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/TRS.py -------------------------------------------------------------------------------- /PLSS/TRS_MODEL_NO_SDE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/TRS_MODEL_NO_SDE.py -------------------------------------------------------------------------------- /PLSS/TRS_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/TRS_Model.py -------------------------------------------------------------------------------- /PLSS/USGS_COORD.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PLSS/USGS_COORD.tbx -------------------------------------------------------------------------------- /Piper/Example.gdb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb.zip -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000001.TablesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000001.TablesByName.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000001.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000001.gdbindexes -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000001.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000001.gdbtable -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000001.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000001.gdbtablx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000002.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000002.gdbtable -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000002.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000002.gdbtablx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000003.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000003.gdbindexes -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000003.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000003.gdbtable -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000003.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000003.gdbtablx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000004.CatItemsByPhysicalName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000004.CatItemsByPhysicalName.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000004.CatItemsByType.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000004.CatItemsByType.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000004.FDO_UUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000004.FDO_UUID.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000004.freelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000004.freelist -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000004.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000004.gdbindexes -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000004.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000004.gdbtable -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000004.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000004.gdbtablx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000004.spx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000004.spx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000005.CatItemTypesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000005.CatItemTypesByName.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000005.CatItemTypesByParentTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000005.CatItemTypesByParentTypeID.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000005.CatItemTypesByUUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000005.CatItemTypesByUUID.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000005.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000005.gdbindexes -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000005.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000005.gdbtable -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000005.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000005.gdbtablx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000006.CatRelsByDestinationID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000006.CatRelsByDestinationID.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000006.CatRelsByOriginID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000006.CatRelsByOriginID.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000006.CatRelsByType.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000006.CatRelsByType.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000006.FDO_UUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000006.FDO_UUID.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000006.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000006.gdbindexes -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000006.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000006.gdbtable -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000006.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000006.gdbtablx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByBackwardLabel.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByBackwardLabel.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByDestItemTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByDestItemTypeID.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByForwardLabel.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByForwardLabel.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByName.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByOriginItemTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByOriginItemTypeID.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByUUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000007.CatRelTypesByUUID.atx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000007.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000007.gdbindexes -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000007.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000007.gdbtable -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000007.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000007.gdbtablx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000009.freelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000009.freelist -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000009.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000009.gdbindexes -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000009.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000009.gdbtable -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000009.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000009.gdbtablx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/a00000009.spx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/a00000009.spx -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/gdb: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Piper/Example.gdb/Example.gdb/timestamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Example.gdb/Example.gdb/timestamps -------------------------------------------------------------------------------- /Piper/Piper.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Piper.tbx -------------------------------------------------------------------------------- /Piper/Piper.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Piper.zip -------------------------------------------------------------------------------- /Piper/Piper/Piper/Example.gdb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Piper/Piper/Example.gdb.zip -------------------------------------------------------------------------------- /Piper/Piper/Piper/Piper.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Piper/Piper/Piper.tbx -------------------------------------------------------------------------------- /Piper/Piper/Piper/out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Piper/Piper/out.pdf -------------------------------------------------------------------------------- /Piper/Piper/Piper/piper2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/Piper/Piper/piper2.py -------------------------------------------------------------------------------- /Piper/out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/out.pdf -------------------------------------------------------------------------------- /Piper/piper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/piper.py -------------------------------------------------------------------------------- /Piper/piper2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/piper2.py -------------------------------------------------------------------------------- /Piper/piper_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Piper/piper_excel.py -------------------------------------------------------------------------------- /PourPuff.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PourPuff.tbx -------------------------------------------------------------------------------- /PourousPuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PourousPuff.py -------------------------------------------------------------------------------- /PourousPuff2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PourousPuff2.py -------------------------------------------------------------------------------- /PourousPuff3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/PourousPuff3.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/README.md -------------------------------------------------------------------------------- /Stiff.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Stiff.zip -------------------------------------------------------------------------------- /Stiff/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Stiff/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /Stiff/Example.gdb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Stiff/Example.gdb.zip -------------------------------------------------------------------------------- /Stiff/Stiff.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Stiff/Stiff.JPG -------------------------------------------------------------------------------- /Stiff/Stiff.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Stiff/Stiff.tbx -------------------------------------------------------------------------------- /Stiff/StiffGEOfeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Stiff/StiffGEOfeat.py -------------------------------------------------------------------------------- /Theis.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis.zip -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000001.TablesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000001.TablesByName.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000001.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000001.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000001.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000001.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000001.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000001.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000002.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000002.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000002.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000002.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000003.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000003.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000003.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000003.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000003.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000003.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000004.CatItemsByPhysicalName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000004.CatItemsByPhysicalName.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000004.CatItemsByType.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000004.CatItemsByType.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000004.FDO_UUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000004.FDO_UUID.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000004.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000004.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000004.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000004.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000004.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000004.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000004.spx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000004.spx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000005.CatItemTypesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000005.CatItemTypesByName.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000005.CatItemTypesByParentTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000005.CatItemTypesByParentTypeID.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000005.CatItemTypesByUUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000005.CatItemTypesByUUID.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000005.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000005.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000005.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000005.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000005.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000005.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000006.CatRelsByDestinationID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000006.CatRelsByDestinationID.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000006.CatRelsByOriginID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000006.CatRelsByOriginID.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000006.CatRelsByType.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000006.CatRelsByType.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000006.FDO_UUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000006.FDO_UUID.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000006.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000006.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000006.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000006.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000006.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000006.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000007.CatRelTypesByBackwardLabel.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000007.CatRelTypesByBackwardLabel.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000007.CatRelTypesByDestItemTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000007.CatRelTypesByDestItemTypeID.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000007.CatRelTypesByForwardLabel.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000007.CatRelTypesByForwardLabel.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000007.CatRelTypesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000007.CatRelTypesByName.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000007.CatRelTypesByOriginItemTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000007.CatRelTypesByOriginItemTypeID.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000007.CatRelTypesByUUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000007.CatRelTypesByUUID.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000007.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000007.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000007.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000007.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000007.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000007.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000009.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000009.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000009.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000009.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000009.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000009.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a00000009.spx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a00000009.spx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000a.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000a.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000a.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000a.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000a.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000a.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000a.spx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000a.spx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000b.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000b.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000b.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000b.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000b.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000b.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000c.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000c.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000c.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000c.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000c.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000c.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000d.band_index.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000d.band_index.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000d.blk_key_index.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000d.blk_key_index.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000d.col_index.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000d.col_index.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000d.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000d.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000d.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000d.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000d.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000d.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000d.row_index.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000d.row_index.atx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000e.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000e.gdbindexes -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000e.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000e.gdbtable -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/a0000000e.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/a0000000e.gdbtablx -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/gdb: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Theis/Theis/Theis.gdb/timestamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Theis.gdb/timestamps -------------------------------------------------------------------------------- /Theis/Theis/Toolbox.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/Toolbox.tbx -------------------------------------------------------------------------------- /Theis/Theis/theis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Theis/Theis/theis.py -------------------------------------------------------------------------------- /Transposer/Toolbox.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Transposer/Toolbox.tbx -------------------------------------------------------------------------------- /Transposer/Transposer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Transposer/Transposer.py -------------------------------------------------------------------------------- /Transposer/Transposer_No_Pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/Transposer/Transposer_No_Pandas.py -------------------------------------------------------------------------------- /graphexamples.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/graphexamples.csv -------------------------------------------------------------------------------- /hydrograph/figure_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/hydrograph/figure_60.png -------------------------------------------------------------------------------- /hydrograph/hydrograph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/hydrograph/hydrograph.py -------------------------------------------------------------------------------- /map_Clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/map_Clean.py -------------------------------------------------------------------------------- /paramgroup dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/paramgroup dict.py -------------------------------------------------------------------------------- /populate_fields_via_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/populate_fields_via_filename.py -------------------------------------------------------------------------------- /prism/PRISM (2).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/prism/PRISM (2).py -------------------------------------------------------------------------------- /prism/PRISM2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/prism/PRISM2.py -------------------------------------------------------------------------------- /prism/PRISM_downsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/prism/PRISM_downsample.py -------------------------------------------------------------------------------- /prism/PRISM_zonal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/prism/PRISM_zonal.py -------------------------------------------------------------------------------- /prism/PRISM_zonal2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/prism/PRISM_zonal2.py -------------------------------------------------------------------------------- /prism/PRISM_zonal3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/prism/PRISM_zonal3.py -------------------------------------------------------------------------------- /prism/prism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/prism/prism.py -------------------------------------------------------------------------------- /zonal_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkenbrandt/ArcPy/HEAD/zonal_extractor.py --------------------------------------------------------------------------------