-
Notifications
You must be signed in to change notification settings - Fork 36
/
CHANGES.txt
126 lines (93 loc) · 3.63 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
Changes
=======
1.6.0 (2021-07-28)
------------------
There have been no changes since 1.6a2.
1.6a2 (2021-07-23)
------------------
- Turn on latent support for 8-bit input and output.
- Rely on GDAL's warper to create the alpha band for RGB input when --rgba is
used.
1.6a1 (2021-07-20)
------------------
- Add an option to include empty tiles in the output mbtiles dataset. By
default, we continue to exclude them.
- Add an alpha channel for RGB input when the --rgba option is used (#76).
1.5.1 (2021-02-02)
------------------
- Add --co (creation) options for fine control over quality of tiles using any
of a format's valid GDAL creation options (#73).
- Add support for WebP tiles (#72).
1.5.0 (2020-10-30)
------------------
There have been no changes since 1.5b5.
1.5b5 (2020-10-29)
------------------
- Improve estimation of number of tiles.
1.5b4 (2020-10-29)
------------------
- Consolidate --append/--overwrite into one option and make appending the
default.
1.5b3 (2020-10-28)
------------------
- Add a --covers option, taking a quadkey, which limits the output to tiles
that cover the quadkey's tile (#66).
1.5b2 (2020-10-16)
------------------
- Add --oo (open) options and --wo (warp) options like those of gdalwarp. These
allow control over, for example, overview level of TMS datasets and the
number of threads used internally by GDAL's warper.
- Add a --cutline option that takes an optional path to a GeoJSON
FeatureCollection (#62). No pixels outside the cutline shape(s) will be
exported and no tiles outside the cutline will be generated.
1.5b1 (2020-10-12)
------------------
- Support appending to or updating existing mbtiles files (#59).
- Add an optional progress bar based on tqdm.
- Add concurrent.futures and multiprocessing implementations of process_tiles()
(#54).
1.4.2 (2019-03-07)
------------------
- Missing support for RGBA input and output (PNG only) has been added (#26).
Using the options --format PNG --rgba with rio-mbtiles will create RGBA PNG
tiles from the first 4 bands of the input dataset.
- Output tile size has been made an command option. The default remains
256 x 256 (#44).
1.4.1 (2018-10-17)
------------------
- Write out empty tiles at the lowest zoom levels when the reverse transform
fails during our attempt to skip empty tiles entirely (#41).
- Avoid modifying rasterio windows in place as they have been made immutable
in new versions of Rasterio (#43).
1.4.0 (2018-08-06)
------------------
- Empty tiles are skipped (#34).
- Require rasterio~=1.0 and the Rasterio's dataset overwriting option. Resolves
issue #39.
- Rasterio's resampling options are enabled on the command line (#31).
- Require Python version >= 2.7.10. Mbtiles data will not be properly written
with older versions of Python. See commit 57fba73 and
https://bugs.python.org/issue23349.
1.3.0 (2016-10-05)
------------------
- Add --src-nodata and --dst-nodata options, with the same semantics as in
rio-warp (#15).
- Require numpy>=1.10 and rasterio>=1.0a2
1.3a1 (2016-09-27)
------------------
- Require rasterio>=1.0a1
1.2.0 (2015-08-03)
------------------
- Register rio-mbtiles to rasterio.rio_plugins (#7).
- Use Rasterio's release-test-4 (0.25) wheels to speed up Travis builds (#11).
- 1.1.0 (2015-05-11)
------------------
- Rename module from rio_mbtiles to mbtiles (#2). Command remains the same.
1.0.1 (2015-05-09)
------------------
- Remove adaptive chunking and commit tiles as soon as possible to keep
program memory well bounded.
1.0.0 (2015-05-08)
------------------
- Initial release. Exports version 1.1 MBTiles with automatic reprojection
and parallel processing. Requires Rasterio >= 0.23.