├── .gitignore ├── LICENSE ├── classification.ipynb ├── data ├── LULC.tif ├── LULC_Segment.tif ├── LULC_Shapefile.cpg ├── LULC_Shapefile.dbf ├── LULC_Shapefile.prj ├── LULC_Shapefile.shp ├── LULC_Shapefile.shx ├── Sample_LC_v1.geojson └── lc.json ├── readme.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/LICENSE -------------------------------------------------------------------------------- /classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/classification.ipynb -------------------------------------------------------------------------------- /data/LULC.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/data/LULC.tif -------------------------------------------------------------------------------- /data/LULC_Segment.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/data/LULC_Segment.tif -------------------------------------------------------------------------------- /data/LULC_Shapefile.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/LULC_Shapefile.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/data/LULC_Shapefile.dbf -------------------------------------------------------------------------------- /data/LULC_Shapefile.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/data/LULC_Shapefile.prj -------------------------------------------------------------------------------- /data/LULC_Shapefile.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/data/LULC_Shapefile.shp -------------------------------------------------------------------------------- /data/LULC_Shapefile.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/data/LULC_Shapefile.shx -------------------------------------------------------------------------------- /data/Sample_LC_v1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/data/Sample_LC_v1.geojson -------------------------------------------------------------------------------- /data/lc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/data/lc.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiqcom/lc-classification-python/HEAD/requirements.txt --------------------------------------------------------------------------------