├── .gitignore ├── ArcpyMockup.py ├── LICENSE ├── README.md ├── __init__.py ├── arcapi.py ├── arcapi_test.py ├── arcapi_tutorial.py ├── chart.mxd ├── custom.py ├── intro_to_arcapi.jpg └── testing ├── README.txt ├── testing.gdb ├── a00000001.TablesByName.atx ├── a00000001.freelist ├── 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.freelist ├── 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 ├── a00000130.gdbindexes ├── a00000130.gdbtable ├── a00000130.gdbtablx ├── a00000130.spx ├── a0000013b.freelist ├── a0000013b.gdbindexes ├── a0000013b.gdbtable ├── a0000013b.gdbtablx ├── a0000013c.gdbindexes ├── a0000013c.gdbtable ├── a0000013c.gdbtablx ├── a0000013c.spx ├── gdb └── timestamps └── testing_files ├── ne_110m_cultural ├── ne_110m_admin_0_countries.dbf ├── ne_110m_admin_0_countries.prj ├── ne_110m_admin_0_countries.qix ├── ne_110m_admin_0_countries.shp └── ne_110m_admin_0_countries.shx └── rasters ├── dh30m_dem.aux.xml ├── dh30m_dem.ovr ├── dh30m_dem ├── dblbnd.adf ├── hdr.adf ├── metadata.xml ├── prj.adf ├── sta.adf ├── w001001.adf └── w001001x.adf ├── dh_july_ndvi.aux.xml ├── dh_july_ndvi ├── dblbnd.adf ├── hdr.adf ├── metadata.xml ├── prj.adf ├── sta.adf ├── w001001.adf └── w001001x.adf ├── info ├── arc.dir ├── arc0002.dat ├── arc0002.nit ├── arc0003.dat ├── arc0003.nit ├── arc0006.dat ├── arc0006.nit ├── arc0007.dat └── arc0007.nit └── log /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/.gitignore -------------------------------------------------------------------------------- /ArcpyMockup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/ArcpyMockup.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/__init__.py -------------------------------------------------------------------------------- /arcapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/arcapi.py -------------------------------------------------------------------------------- /arcapi_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/arcapi_test.py -------------------------------------------------------------------------------- /arcapi_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/arcapi_tutorial.py -------------------------------------------------------------------------------- /chart.mxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/chart.mxd -------------------------------------------------------------------------------- /custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/custom.py -------------------------------------------------------------------------------- /intro_to_arcapi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/intro_to_arcapi.jpg -------------------------------------------------------------------------------- /testing/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/README.txt -------------------------------------------------------------------------------- /testing/testing.gdb/a00000001.TablesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000001.TablesByName.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000001.freelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000001.freelist -------------------------------------------------------------------------------- /testing/testing.gdb/a00000001.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000001.gdbindexes -------------------------------------------------------------------------------- /testing/testing.gdb/a00000001.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000001.gdbtable -------------------------------------------------------------------------------- /testing/testing.gdb/a00000001.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000001.gdbtablx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000002.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000002.gdbtable -------------------------------------------------------------------------------- /testing/testing.gdb/a00000002.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000002.gdbtablx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000003.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000003.gdbindexes -------------------------------------------------------------------------------- /testing/testing.gdb/a00000003.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000003.gdbtable -------------------------------------------------------------------------------- /testing/testing.gdb/a00000003.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000003.gdbtablx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000004.CatItemsByPhysicalName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000004.CatItemsByPhysicalName.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000004.CatItemsByType.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000004.CatItemsByType.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000004.FDO_UUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000004.FDO_UUID.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000004.freelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000004.freelist -------------------------------------------------------------------------------- /testing/testing.gdb/a00000004.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000004.gdbindexes -------------------------------------------------------------------------------- /testing/testing.gdb/a00000004.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000004.gdbtable -------------------------------------------------------------------------------- /testing/testing.gdb/a00000004.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000004.gdbtablx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000004.spx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000004.spx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000005.CatItemTypesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000005.CatItemTypesByName.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000005.CatItemTypesByParentTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000005.CatItemTypesByParentTypeID.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000005.CatItemTypesByUUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000005.CatItemTypesByUUID.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000005.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000005.gdbindexes -------------------------------------------------------------------------------- /testing/testing.gdb/a00000005.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000005.gdbtable -------------------------------------------------------------------------------- /testing/testing.gdb/a00000005.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000005.gdbtablx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000006.CatRelsByDestinationID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000006.CatRelsByDestinationID.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000006.CatRelsByOriginID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000006.CatRelsByOriginID.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000006.CatRelsByType.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000006.CatRelsByType.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000006.FDO_UUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000006.FDO_UUID.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000006.freelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000006.freelist -------------------------------------------------------------------------------- /testing/testing.gdb/a00000006.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000006.gdbindexes -------------------------------------------------------------------------------- /testing/testing.gdb/a00000006.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000006.gdbtable -------------------------------------------------------------------------------- /testing/testing.gdb/a00000006.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000006.gdbtablx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000007.CatRelTypesByBackwardLabel.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000007.CatRelTypesByBackwardLabel.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000007.CatRelTypesByDestItemTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000007.CatRelTypesByDestItemTypeID.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000007.CatRelTypesByForwardLabel.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000007.CatRelTypesByForwardLabel.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000007.CatRelTypesByName.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000007.CatRelTypesByName.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000007.CatRelTypesByOriginItemTypeID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000007.CatRelTypesByOriginItemTypeID.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000007.CatRelTypesByUUID.atx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000007.CatRelTypesByUUID.atx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000007.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000007.gdbindexes -------------------------------------------------------------------------------- /testing/testing.gdb/a00000007.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000007.gdbtable -------------------------------------------------------------------------------- /testing/testing.gdb/a00000007.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000007.gdbtablx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000130.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000130.gdbindexes -------------------------------------------------------------------------------- /testing/testing.gdb/a00000130.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000130.gdbtable -------------------------------------------------------------------------------- /testing/testing.gdb/a00000130.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000130.gdbtablx -------------------------------------------------------------------------------- /testing/testing.gdb/a00000130.spx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a00000130.spx -------------------------------------------------------------------------------- /testing/testing.gdb/a0000013b.freelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a0000013b.freelist -------------------------------------------------------------------------------- /testing/testing.gdb/a0000013b.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a0000013b.gdbindexes -------------------------------------------------------------------------------- /testing/testing.gdb/a0000013b.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a0000013b.gdbtable -------------------------------------------------------------------------------- /testing/testing.gdb/a0000013b.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a0000013b.gdbtablx -------------------------------------------------------------------------------- /testing/testing.gdb/a0000013c.gdbindexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a0000013c.gdbindexes -------------------------------------------------------------------------------- /testing/testing.gdb/a0000013c.gdbtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a0000013c.gdbtable -------------------------------------------------------------------------------- /testing/testing.gdb/a0000013c.gdbtablx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a0000013c.gdbtablx -------------------------------------------------------------------------------- /testing/testing.gdb/a0000013c.spx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/a0000013c.spx -------------------------------------------------------------------------------- /testing/testing.gdb/gdb: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /testing/testing.gdb/timestamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing.gdb/timestamps -------------------------------------------------------------------------------- /testing/testing_files/ne_110m_cultural/ne_110m_admin_0_countries.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/ne_110m_cultural/ne_110m_admin_0_countries.dbf -------------------------------------------------------------------------------- /testing/testing_files/ne_110m_cultural/ne_110m_admin_0_countries.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/ne_110m_cultural/ne_110m_admin_0_countries.prj -------------------------------------------------------------------------------- /testing/testing_files/ne_110m_cultural/ne_110m_admin_0_countries.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/ne_110m_cultural/ne_110m_admin_0_countries.qix -------------------------------------------------------------------------------- /testing/testing_files/ne_110m_cultural/ne_110m_admin_0_countries.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/ne_110m_cultural/ne_110m_admin_0_countries.shp -------------------------------------------------------------------------------- /testing/testing_files/ne_110m_cultural/ne_110m_admin_0_countries.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/ne_110m_cultural/ne_110m_admin_0_countries.shx -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh30m_dem.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh30m_dem.aux.xml -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh30m_dem.ovr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh30m_dem.ovr -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh30m_dem/dblbnd.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh30m_dem/dblbnd.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh30m_dem/hdr.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh30m_dem/hdr.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh30m_dem/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh30m_dem/metadata.xml -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh30m_dem/prj.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh30m_dem/prj.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh30m_dem/sta.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh30m_dem/sta.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh30m_dem/w001001.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh30m_dem/w001001.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh30m_dem/w001001x.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh30m_dem/w001001x.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh_july_ndvi.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh_july_ndvi.aux.xml -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh_july_ndvi/dblbnd.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh_july_ndvi/dblbnd.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh_july_ndvi/hdr.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh_july_ndvi/hdr.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh_july_ndvi/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh_july_ndvi/metadata.xml -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh_july_ndvi/prj.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh_july_ndvi/prj.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh_july_ndvi/sta.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh_july_ndvi/sta.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh_july_ndvi/w001001.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh_july_ndvi/w001001.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/dh_july_ndvi/w001001x.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/dh_july_ndvi/w001001x.adf -------------------------------------------------------------------------------- /testing/testing_files/rasters/info/arc.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/info/arc.dir -------------------------------------------------------------------------------- /testing/testing_files/rasters/info/arc0002.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/info/arc0002.dat -------------------------------------------------------------------------------- /testing/testing_files/rasters/info/arc0002.nit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/info/arc0002.nit -------------------------------------------------------------------------------- /testing/testing_files/rasters/info/arc0003.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/info/arc0003.dat -------------------------------------------------------------------------------- /testing/testing_files/rasters/info/arc0003.nit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/info/arc0003.nit -------------------------------------------------------------------------------- /testing/testing_files/rasters/info/arc0006.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/info/arc0006.dat -------------------------------------------------------------------------------- /testing/testing_files/rasters/info/arc0006.nit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/info/arc0006.nit -------------------------------------------------------------------------------- /testing/testing_files/rasters/info/arc0007.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/info/arc0007.dat -------------------------------------------------------------------------------- /testing/testing_files/rasters/info/arc0007.nit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/info/arc0007.nit -------------------------------------------------------------------------------- /testing/testing_files/rasters/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERC-CEH/arcapi/HEAD/testing/testing_files/rasters/log --------------------------------------------------------------------------------