Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Jul 21, 2022
1 parent bea3c55 commit 1023ff8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ commit = True
tag = True
tag_name = {new_version}

[bumpversion:file:rio_fake/__init__.py]
[bumpversion:file:rio_faux/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,21 @@ $ pip install git+https://github.com/cogeotiff/rio-faux.git
$ rio faux --help
Usage: rio faux [OPTIONS] INPUT OUTPUT
Create Fake copy.
Create empty copy.
Options:
--forward-band-tags Forward band tags to output bands.
--forward-dataset-tags Forward dataset tags to output image.
--co, --profile NAME=VALUE Driver specific creation options. See the documentation for the selected output driver for more information.
--config NAME=VALUE GDAL configuration options.
--help Show this message and exit.
```

```
$ rio faux my_image_i_cant_share.tif public.tif
$ rio faux tests/fixtures/cog_band_tags.tif out.tif
```
![](https://user-images.githubusercontent.com/10407788/180162026-2a023aa9-9c1b-4277-a3c2-c2865d9d7c43.png)


## Contribution & Development

Expand Down
2 changes: 1 addition & 1 deletion rio_faux/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def faux(
creation_options,
config,
):
"""Create Fake copy."""
"""Create empty copy."""
# Check if the dataset has overviews
with rasterio.open(input) as src_dst:
ovr = src_dst.overviews(1)
Expand Down

0 comments on commit 1023ff8

Please sign in to comment.