├── .bumpversion.cfg ├── .github ├── codecov.yml └── workflows │ ├── ci.yml │ └── deploy_mkdocs.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── docs │ ├── contributing.md │ ├── css │ │ └── extra.css │ ├── index.md │ └── release-notes.md └── mkdocs.yml ├── pyproject.toml ├── rio_faux ├── __init__.py └── cli.py └── tests ├── __init__.py ├── fixtures ├── cog_band_tags.tif ├── image_171px.tif ├── image_2000px.tif ├── image_51px.tif ├── image_colormap.tif ├── image_float.tif ├── image_geos.tif ├── image_missing_nodata.tif ├── image_nan.tif ├── image_nocolormap.tif ├── image_nodata.tif ├── image_north.tif ├── image_rgb.tif ├── image_rgb_mask.tif ├── image_rgba.tif ├── image_tags.tif ├── image_web.tif ├── image_web_z5_z11.tif ├── image_with_offsets.tif └── slc.tif └── test_cli.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/.github/workflows/deploy_mkdocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/README.md -------------------------------------------------------------------------------- /docs/docs/contributing.md: -------------------------------------------------------------------------------- 1 | ../../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/docs/docs/css/extra.css -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /docs/docs/release-notes.md: -------------------------------------------------------------------------------- 1 | ../../CHANGES.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rio_faux/__init__.py: -------------------------------------------------------------------------------- 1 | """Create empty copy of an image.""" 2 | 3 | __version__ = "0.2.1" 4 | -------------------------------------------------------------------------------- /rio_faux/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/rio_faux/cli.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """rio-cogeo tests suite.""" 2 | -------------------------------------------------------------------------------- /tests/fixtures/cog_band_tags.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/cog_band_tags.tif -------------------------------------------------------------------------------- /tests/fixtures/image_171px.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_171px.tif -------------------------------------------------------------------------------- /tests/fixtures/image_2000px.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_2000px.tif -------------------------------------------------------------------------------- /tests/fixtures/image_51px.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_51px.tif -------------------------------------------------------------------------------- /tests/fixtures/image_colormap.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_colormap.tif -------------------------------------------------------------------------------- /tests/fixtures/image_float.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_float.tif -------------------------------------------------------------------------------- /tests/fixtures/image_geos.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_geos.tif -------------------------------------------------------------------------------- /tests/fixtures/image_missing_nodata.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_missing_nodata.tif -------------------------------------------------------------------------------- /tests/fixtures/image_nan.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_nan.tif -------------------------------------------------------------------------------- /tests/fixtures/image_nocolormap.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_nocolormap.tif -------------------------------------------------------------------------------- /tests/fixtures/image_nodata.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_nodata.tif -------------------------------------------------------------------------------- /tests/fixtures/image_north.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_north.tif -------------------------------------------------------------------------------- /tests/fixtures/image_rgb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_rgb.tif -------------------------------------------------------------------------------- /tests/fixtures/image_rgb_mask.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_rgb_mask.tif -------------------------------------------------------------------------------- /tests/fixtures/image_rgba.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_rgba.tif -------------------------------------------------------------------------------- /tests/fixtures/image_tags.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_tags.tif -------------------------------------------------------------------------------- /tests/fixtures/image_web.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_web.tif -------------------------------------------------------------------------------- /tests/fixtures/image_web_z5_z11.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_web_z5_z11.tif -------------------------------------------------------------------------------- /tests/fixtures/image_with_offsets.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/image_with_offsets.tif -------------------------------------------------------------------------------- /tests/fixtures/slc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/fixtures/slc.tif -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogeotiff/rio-faux/HEAD/tests/test_cli.py --------------------------------------------------------------------------------