├── .gitignore ├── LICENSE ├── README.md ├── lulc_py.ipynb └── materials ├── rasters ├── s2image.tfw ├── s2image.tif ├── s2image.tif.aux.xml ├── s2image.tif.ovr └── s2image.tif.xml ├── results ├── lulc_DT.tif ├── lulc_DT.tif.aux.xml ├── lulc_DT.tif.vat.cpg ├── lulc_DT.tif.vat.dbf ├── lulc_RF.tif ├── lulc_RF.tif.aux.xml ├── lulc_RF.tif.vat.cpg ├── lulc_RF.tif.vat.dbf ├── lulc_SVM.tif ├── lulc_SVM.tif.aux.xml ├── lulc_SVM.tif.vat.cpg └── lulc_SVM.tif.vat.dbf ├── shapefiles ├── aoi_boundary.cpg ├── aoi_boundary.dbf ├── aoi_boundary.prj ├── aoi_boundary.sbn ├── aoi_boundary.sbx ├── aoi_boundary.shp ├── aoi_boundary.shp.xml ├── aoi_boundary.shx ├── samples.cpg ├── samples.dbf ├── samples.prj ├── samples.sbn ├── samples.sbx ├── samples.shp ├── samples.shp.xml └── samples.shx └── temp ├── temp_y_points.cpg ├── temp_y_points.dbf ├── temp_y_points.prj ├── temp_y_points.shp └── temp_y_points.shx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/README.md -------------------------------------------------------------------------------- /lulc_py.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/lulc_py.ipynb -------------------------------------------------------------------------------- /materials/rasters/s2image.tfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/rasters/s2image.tfw -------------------------------------------------------------------------------- /materials/rasters/s2image.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/rasters/s2image.tif -------------------------------------------------------------------------------- /materials/rasters/s2image.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/rasters/s2image.tif.aux.xml -------------------------------------------------------------------------------- /materials/rasters/s2image.tif.ovr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/rasters/s2image.tif.ovr -------------------------------------------------------------------------------- /materials/rasters/s2image.tif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/rasters/s2image.tif.xml -------------------------------------------------------------------------------- /materials/results/lulc_DT.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/results/lulc_DT.tif -------------------------------------------------------------------------------- /materials/results/lulc_DT.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/results/lulc_DT.tif.aux.xml -------------------------------------------------------------------------------- /materials/results/lulc_DT.tif.vat.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /materials/results/lulc_DT.tif.vat.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/results/lulc_DT.tif.vat.dbf -------------------------------------------------------------------------------- /materials/results/lulc_RF.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/results/lulc_RF.tif -------------------------------------------------------------------------------- /materials/results/lulc_RF.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/results/lulc_RF.tif.aux.xml -------------------------------------------------------------------------------- /materials/results/lulc_RF.tif.vat.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /materials/results/lulc_RF.tif.vat.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/results/lulc_RF.tif.vat.dbf -------------------------------------------------------------------------------- /materials/results/lulc_SVM.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/results/lulc_SVM.tif -------------------------------------------------------------------------------- /materials/results/lulc_SVM.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/results/lulc_SVM.tif.aux.xml -------------------------------------------------------------------------------- /materials/results/lulc_SVM.tif.vat.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /materials/results/lulc_SVM.tif.vat.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/results/lulc_SVM.tif.vat.dbf -------------------------------------------------------------------------------- /materials/shapefiles/aoi_boundary.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /materials/shapefiles/aoi_boundary.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/aoi_boundary.dbf -------------------------------------------------------------------------------- /materials/shapefiles/aoi_boundary.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/aoi_boundary.prj -------------------------------------------------------------------------------- /materials/shapefiles/aoi_boundary.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/aoi_boundary.sbn -------------------------------------------------------------------------------- /materials/shapefiles/aoi_boundary.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/aoi_boundary.sbx -------------------------------------------------------------------------------- /materials/shapefiles/aoi_boundary.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/aoi_boundary.shp -------------------------------------------------------------------------------- /materials/shapefiles/aoi_boundary.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/aoi_boundary.shp.xml -------------------------------------------------------------------------------- /materials/shapefiles/aoi_boundary.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/aoi_boundary.shx -------------------------------------------------------------------------------- /materials/shapefiles/samples.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /materials/shapefiles/samples.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/samples.dbf -------------------------------------------------------------------------------- /materials/shapefiles/samples.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/samples.prj -------------------------------------------------------------------------------- /materials/shapefiles/samples.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/samples.sbn -------------------------------------------------------------------------------- /materials/shapefiles/samples.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/samples.sbx -------------------------------------------------------------------------------- /materials/shapefiles/samples.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/samples.shp -------------------------------------------------------------------------------- /materials/shapefiles/samples.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/samples.shp.xml -------------------------------------------------------------------------------- /materials/shapefiles/samples.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/shapefiles/samples.shx -------------------------------------------------------------------------------- /materials/temp/temp_y_points.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /materials/temp/temp_y_points.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/temp/temp_y_points.dbf -------------------------------------------------------------------------------- /materials/temp/temp_y_points.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/temp/temp_y_points.prj -------------------------------------------------------------------------------- /materials/temp/temp_y_points.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/temp/temp_y_points.shp -------------------------------------------------------------------------------- /materials/temp/temp_y_points.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waleedgeo/lulc_py/HEAD/materials/temp/temp_y_points.shx --------------------------------------------------------------------------------