Skip to content

Commit 60ae48b

Browse files
committed
Update changelog, convert to markdown, add pr links
1 parent 0ad61b1 commit 60ae48b

File tree

2 files changed

+112
-95
lines changed

2 files changed

+112
-95
lines changed

CHANGELOG.md

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
0.9.0 (2020-08-19)
2+
------------------
3+
- Add the ability to parse non-polygons from the GeoJSON file ([#170](https://github.com/developmentseed/label-maker/pull/170))
4+
- Add `over_zoom` parameter to create higher resolution tiles ([#172](https://github.com/developmentseed/label-maker/pull/172))
5+
- Add `band_indices` parameter to select bands from input TIF file ([#178](https://github.com/developmentseed/label-maker/pull/178))
6+
- Improve test output ([#173](https://github.com/developmentseed/label-maker/pull/173))
7+
- Update documentation
8+
9+
10+
0.8.0 (2020-05-13)
11+
------------------
12+
- Maintenance release
13+
- Add tox for tests/automation
14+
- Automate pypi releases
15+
- Dependency removal (homura/pycurl/pyproj) and upgrades (rasterio/numpy)
16+
17+
18+
0.7.0 (2019-12-13)
19+
------------------
20+
- Fixed bug introduced by HTTP Authentication ([#157](https://github.com/developmentseed/label-maker/pull/157) and [#161](https://github.com/developmentseed/label-maker/pull/161))
21+
- Updated background ratio to work for multiclass problems ([#159](https://github.com/developmentseed/label-maker/pull/159))
22+
23+
24+
0.6.1 (2019-11-11)
25+
------------------
26+
- Added ability to use HTTP Authentication for TMS endpoints ([#152](https://github.com/developmentseed/label-maker/pull/152))
27+
28+
29+
0.6.0 (2019-11-06)
30+
------------------
31+
- Use sys.exectuable in place of python string ([#124](https://github.com/developmentseed/label-maker/pull/124))
32+
- Correct script reference to fix bug in skynet train example ([#129](https://github.com/developmentseed/label-maker/pull/129))
33+
- Add s3 requirement to rasterio ([#137](https://github.com/developmentseed/label-maker/pull/137))
34+
- users can split data into more groups than train and test, for example train/test/validate, and specify the ratio for
35+
each split ([#149](https://github.com/developmentseed/label-maker/pull/149))
36+
37+
38+
0.5.1 (2018-11-12)
39+
------------------
40+
- Skip invalid or empty geometries which prevent segmentation rendering ([#118](https://github.com/developmentseed/label-maker/pull/118))
41+
- Add binder example ([#119](https://github.com/developmentseed/label-maker/pull/119))
42+
43+
44+
0.5.0 (2018-11-05)
45+
------------------
46+
- Accept GeoJSON input labels ([#32](https://github.com/developmentseed/label-maker/pull/32))
47+
- Correct documentation regarding class labels ([#113](https://github.com/developmentseed/label-maker/pull/113))
48+
- Small miscellaneous fixes
49+
50+
51+
0.4.0 (2018-10-04)
52+
------------------
53+
- Read file drivers to determine file type rather than relying on extension ([#80](https://github.com/developmentseed/label-maker/pull/80))
54+
- Add support for WMS endpoints as an imagery source ([#93](https://github.com/developmentseed/label-maker/pull/93))
55+
- Add documentation site ([#108](https://github.com/developmentseed/label-maker/pull/108))
56+
- Fix rendering errors at tile boundaries ([#78](https://github.com/developmentseed/label-maker/pull/78))
57+
- New examples and updates to example code ([#89](https://github.com/developmentseed/label-maker/pull/89), [#91](https://github.com/developmentseed/label-maker/pull/91), [#105](https://github.com/developmentseed/label-maker/pull/105), [#107](https://github.com/developmentseed/label-maker/pull/107))
58+
59+
60+
0.3.2 (2018-05-14)
61+
------------------
62+
- Provide a default value of False for imagery_offset to preview function ([#79](https://github.com/developmentseed/label-maker/pull/79))
63+
64+
65+
0.3.1 (2018-04-19)
66+
------------------
67+
- Add colors for object detection and segmentation labels ([#64](https://github.com/developmentseed/label-maker/pull/64))
68+
- Add support for `vrt` reads ([#71](https://github.com/developmentseed/label-maker/pull/71))
69+
- Add documentation for local testing ([#75](https://github.com/developmentseed/label-maker/pull/75))
70+
- Fix `preview` downloading one too many tiles ([#63](https://github.com/developmentseed/label-maker/pull/63))
71+
- Fix warnings on intentionally missing tiles ([#68](https://github.com/developmentseed/label-maker/pull/68))
72+
- Fix image and tile format inconsistency when packaging GeoTIFF ([#66](https://github.com/developmentseed/label-maker/pull/66))
73+
- Fix function docstrings ([#61](https://github.com/developmentseed/label-maker/pull/61))
74+
75+
76+
0.3.0 (2018-03-29)
77+
------------------
78+
- Add optional `imagery_offset` property to align imagery with label data ([#58](https://github.com/developmentseed/label-maker/pull/58))
79+
- Generate preview tiles faster ([#30](https://github.com/developmentseed/label-maker/pull/30))
80+
- Add support for reading GeoTIFF as the imagery source ([#13](https://github.com/developmentseed/label-maker/pull/13))
81+
- Refactor testing structure ([#29](https://github.com/developmentseed/label-maker/pull/29))
82+
- Bug fix: fix logic for matching the correct tiles when creating segmentation
83+
labels with the --sparse flag ([#46](https://github.com/developmentseed/label-maker/pull/46))
84+
85+
86+
0.2.1 (2018-02-24)
87+
------------------
88+
- Lower memory usage of stream_filter.py ([#39](https://github.com/developmentseed/label-maker/pull/39))
89+
- Bug fix: print correct object detection labeling summary ([#33](https://github.com/developmentseed/label-maker/pull/33))
90+
- Bug fix: uncompress mbtiles line by line to prevent memory usage issues
91+
causing large files to fail on the `download` subcommand ([#35](https://github.com/developmentseed/label-maker/pull/35))
92+
93+
94+
0.2.0 (2018-01-19)
95+
------------------
96+
- Add optional `buffer` property to classes to create more accurate
97+
object-detection or segmentation labels ([#10](https://github.com/developmentseed/label-maker/pull/10)).
98+
- Add --sparse flag to limit the size of labels.npz file ([#16](https://github.com/developmentseed/label-maker/pull/16)).
99+
- Add more globally ignored statements to pylint settings ([#24](https://github.com/developmentseed/label-maker/pull/24)).
100+
- Bug fix: correct a variable name in package.py which prevented
101+
object-detection packaging from running ([#19](https://github.com/developmentseed/label-maker/pull/19)).
102+
103+
104+
0.1.2 (2018-01-11)
105+
------------------
106+
- Bug fix: resolve path issues which prevented it from working outside the
107+
github cloned repository ([#2](https://github.com/developmentseed/label-maker/pull/2)).
108+
109+
110+
0.1.0 (2018-01-10)
111+
------------------
112+
- Initial Release

CHANGES.txt

Lines changed: 0 additions & 95 deletions
This file was deleted.

0 commit comments

Comments
 (0)