├── .circleci ├── config.yml └── install_tippecanoe.sh ├── .config └── pylintrc ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── config.example.json ├── docs ├── Makefile ├── conf.py ├── contributing.rst ├── examples.rst ├── index.rst ├── make.bat └── parameters.rst ├── examples ├── README.md ├── images │ ├── Intersection_over_Union.png │ ├── Vietnam_Buildings.png │ ├── Vietnam_tiles.png │ ├── classification.png │ ├── dar-classification.png │ ├── dar-tile.jpg │ ├── ob_tf_result_fig1.jpg │ ├── preview_tiles.jpg │ ├── sagemaker.png │ ├── tensorboard_sc.jpg │ ├── tf_sc.jpg │ ├── tf_tiles.jpg │ ├── valencia-example-1.png │ ├── valencia-example-2.png │ └── valencia-example-3.png ├── label-maker-binder.md ├── nets │ ├── SageMaker_mx-lenet.ipynb │ └── resnet.py ├── sentinel-hub.md ├── skynet-train-data-prep.md ├── utils │ ├── building_od.pbtxt │ ├── ec2runinst.json │ ├── skynet.py │ ├── ssd_inception_v2_coco.config │ ├── tf_iou.py │ ├── tf_od_predict.py │ └── tf_records_generation.py ├── walkthrough-classification-aws.md ├── walkthrough-classification-mxnet-sagemaker.md └── walkthrough-tensorflow-object-detection.md ├── label_maker ├── __init__.py ├── countries.txt ├── download.py ├── filter.py ├── images.py ├── label.py ├── main.py ├── package.py ├── palette.py ├── preview.py ├── stream_filter.py ├── utils.py ├── validate.py └── version.py ├── requirements-dev.txt ├── requirements.txt ├── setup.py ├── test ├── __init__.py ├── artifacts │ └── .gitkeep ├── fixtures │ ├── 1087767-1046604-21.tif │ ├── 1087767-1046604-21_offset.tif │ ├── 146-195-9.jpeg │ ├── drone.tif │ ├── drone.vrt │ ├── integration │ │ ├── classification.geojson │ │ ├── classification_linestring.geojson │ │ ├── config-linestring.geojson.json │ │ ├── config.geojson.json │ │ ├── config.integration.bands.json │ │ ├── config.integration.json │ │ ├── config.integration.object_detection.json │ │ ├── config.integration.segmentation.json │ │ ├── config.integration.segmentation_sparse.json │ │ ├── config.integration_sparse.json │ │ ├── config.intergration.geotiff_package.json │ │ ├── config_3way.integration.json │ │ ├── config_overzoom.integration.json │ │ ├── config_tms_format_img.json │ │ ├── labels-cl-img-f.npz │ │ ├── labels-cl.npz │ │ ├── labels-linestring.geojson │ │ ├── labels-ms.npz │ │ ├── labels-od.npz │ │ ├── labels-tif.npz │ │ ├── labels.geojson │ │ ├── ms_img.tif │ │ ├── portugal-z17.mbtiles │ │ ├── roads_ms.geojson │ │ ├── tiles │ │ │ ├── 62092-50163-17.jpg │ │ │ ├── 62092-50164-17.jpg │ │ │ ├── 62093-50162-17.jpg │ │ │ ├── 62093-50163-17.jpg │ │ │ ├── 62093-50164-17.jpg │ │ │ ├── 62094-50162-17.jpg │ │ │ ├── 62094-50163-17.jpg │ │ │ └── 62094-50164-17.jpg │ │ └── tiles_png │ │ │ ├── 2060-1976-12.png │ │ │ ├── 2060-1977-12.png │ │ │ ├── 2060-1978-12.png │ │ │ ├── 2061-1976-12.png │ │ │ ├── 2061-1977-12.png │ │ │ ├── 2061-1978-12.png │ │ │ ├── 2062-1976-12.png │ │ │ ├── 2062-1977-12.png │ │ │ ├── 2062-1978-12.png │ │ │ ├── 2063-1976-12.png │ │ │ ├── 2063-1977-12.png │ │ │ └── 2063-1978-12.png │ └── validation │ │ ├── geojson.json │ │ └── passing.json ├── integration │ ├── test_classification_labels.py │ ├── test_classification_labels_geojson.py │ ├── test_classification_labels_linestring_geojson.py │ ├── test_classification_labels_sparse.py │ ├── test_classification_package.py │ ├── test_directory_move.py │ ├── test_geotiff_package.py │ ├── test_ms_bands_package.py │ ├── test_object_labels.py │ ├── test_object_package.py │ ├── test_segmentation_labels.py │ └── test_segmentation_labels_sparse.py └── unit │ ├── __init__.py │ ├── test_filter.py │ ├── test_label.py │ ├── test_utils.py │ └── test_validate.py └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/install_tippecanoe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/.circleci/install_tippecanoe.sh -------------------------------------------------------------------------------- /.config/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/.config/pylintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/README.md -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/config.example.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/docs/parameters.rst -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/images/Intersection_over_Union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/Intersection_over_Union.png -------------------------------------------------------------------------------- /examples/images/Vietnam_Buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/Vietnam_Buildings.png -------------------------------------------------------------------------------- /examples/images/Vietnam_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/Vietnam_tiles.png -------------------------------------------------------------------------------- /examples/images/classification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/classification.png -------------------------------------------------------------------------------- /examples/images/dar-classification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/dar-classification.png -------------------------------------------------------------------------------- /examples/images/dar-tile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/dar-tile.jpg -------------------------------------------------------------------------------- /examples/images/ob_tf_result_fig1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/ob_tf_result_fig1.jpg -------------------------------------------------------------------------------- /examples/images/preview_tiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/preview_tiles.jpg -------------------------------------------------------------------------------- /examples/images/sagemaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/sagemaker.png -------------------------------------------------------------------------------- /examples/images/tensorboard_sc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/tensorboard_sc.jpg -------------------------------------------------------------------------------- /examples/images/tf_sc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/tf_sc.jpg -------------------------------------------------------------------------------- /examples/images/tf_tiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/tf_tiles.jpg -------------------------------------------------------------------------------- /examples/images/valencia-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/valencia-example-1.png -------------------------------------------------------------------------------- /examples/images/valencia-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/valencia-example-2.png -------------------------------------------------------------------------------- /examples/images/valencia-example-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/images/valencia-example-3.png -------------------------------------------------------------------------------- /examples/label-maker-binder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/label-maker-binder.md -------------------------------------------------------------------------------- /examples/nets/SageMaker_mx-lenet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/nets/SageMaker_mx-lenet.ipynb -------------------------------------------------------------------------------- /examples/nets/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/nets/resnet.py -------------------------------------------------------------------------------- /examples/sentinel-hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/sentinel-hub.md -------------------------------------------------------------------------------- /examples/skynet-train-data-prep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/skynet-train-data-prep.md -------------------------------------------------------------------------------- /examples/utils/building_od.pbtxt: -------------------------------------------------------------------------------- 1 | item { 2 | id: 1 3 | name: 'building' 4 | } 5 | -------------------------------------------------------------------------------- /examples/utils/ec2runinst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/utils/ec2runinst.json -------------------------------------------------------------------------------- /examples/utils/skynet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/utils/skynet.py -------------------------------------------------------------------------------- /examples/utils/ssd_inception_v2_coco.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/utils/ssd_inception_v2_coco.config -------------------------------------------------------------------------------- /examples/utils/tf_iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/utils/tf_iou.py -------------------------------------------------------------------------------- /examples/utils/tf_od_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/utils/tf_od_predict.py -------------------------------------------------------------------------------- /examples/utils/tf_records_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/utils/tf_records_generation.py -------------------------------------------------------------------------------- /examples/walkthrough-classification-aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/walkthrough-classification-aws.md -------------------------------------------------------------------------------- /examples/walkthrough-classification-mxnet-sagemaker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/walkthrough-classification-mxnet-sagemaker.md -------------------------------------------------------------------------------- /examples/walkthrough-tensorflow-object-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/examples/walkthrough-tensorflow-object-detection.md -------------------------------------------------------------------------------- /label_maker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /label_maker/countries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/countries.txt -------------------------------------------------------------------------------- /label_maker/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/download.py -------------------------------------------------------------------------------- /label_maker/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/filter.py -------------------------------------------------------------------------------- /label_maker/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/images.py -------------------------------------------------------------------------------- /label_maker/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/label.py -------------------------------------------------------------------------------- /label_maker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/main.py -------------------------------------------------------------------------------- /label_maker/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/package.py -------------------------------------------------------------------------------- /label_maker/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/palette.py -------------------------------------------------------------------------------- /label_maker/preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/preview.py -------------------------------------------------------------------------------- /label_maker/stream_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/stream_filter.py -------------------------------------------------------------------------------- /label_maker/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/utils.py -------------------------------------------------------------------------------- /label_maker/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/label_maker/validate.py -------------------------------------------------------------------------------- /label_maker/version.py: -------------------------------------------------------------------------------- 1 | """Library verison""" 2 | __version__ = '0.9.1' 3 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/artifacts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/1087767-1046604-21.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/1087767-1046604-21.tif -------------------------------------------------------------------------------- /test/fixtures/1087767-1046604-21_offset.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/1087767-1046604-21_offset.tif -------------------------------------------------------------------------------- /test/fixtures/146-195-9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/146-195-9.jpeg -------------------------------------------------------------------------------- /test/fixtures/drone.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/drone.tif -------------------------------------------------------------------------------- /test/fixtures/drone.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/drone.vrt -------------------------------------------------------------------------------- /test/fixtures/integration/classification.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/classification.geojson -------------------------------------------------------------------------------- /test/fixtures/integration/classification_linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/classification_linestring.geojson -------------------------------------------------------------------------------- /test/fixtures/integration/config-linestring.geojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config-linestring.geojson.json -------------------------------------------------------------------------------- /test/fixtures/integration/config.geojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config.geojson.json -------------------------------------------------------------------------------- /test/fixtures/integration/config.integration.bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config.integration.bands.json -------------------------------------------------------------------------------- /test/fixtures/integration/config.integration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config.integration.json -------------------------------------------------------------------------------- /test/fixtures/integration/config.integration.object_detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config.integration.object_detection.json -------------------------------------------------------------------------------- /test/fixtures/integration/config.integration.segmentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config.integration.segmentation.json -------------------------------------------------------------------------------- /test/fixtures/integration/config.integration.segmentation_sparse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config.integration.segmentation_sparse.json -------------------------------------------------------------------------------- /test/fixtures/integration/config.integration_sparse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config.integration_sparse.json -------------------------------------------------------------------------------- /test/fixtures/integration/config.intergration.geotiff_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config.intergration.geotiff_package.json -------------------------------------------------------------------------------- /test/fixtures/integration/config_3way.integration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config_3way.integration.json -------------------------------------------------------------------------------- /test/fixtures/integration/config_overzoom.integration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config_overzoom.integration.json -------------------------------------------------------------------------------- /test/fixtures/integration/config_tms_format_img.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/config_tms_format_img.json -------------------------------------------------------------------------------- /test/fixtures/integration/labels-cl-img-f.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/labels-cl-img-f.npz -------------------------------------------------------------------------------- /test/fixtures/integration/labels-cl.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/labels-cl.npz -------------------------------------------------------------------------------- /test/fixtures/integration/labels-linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/labels-linestring.geojson -------------------------------------------------------------------------------- /test/fixtures/integration/labels-ms.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/labels-ms.npz -------------------------------------------------------------------------------- /test/fixtures/integration/labels-od.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/labels-od.npz -------------------------------------------------------------------------------- /test/fixtures/integration/labels-tif.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/labels-tif.npz -------------------------------------------------------------------------------- /test/fixtures/integration/labels.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/labels.geojson -------------------------------------------------------------------------------- /test/fixtures/integration/ms_img.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/ms_img.tif -------------------------------------------------------------------------------- /test/fixtures/integration/portugal-z17.mbtiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/portugal-z17.mbtiles -------------------------------------------------------------------------------- /test/fixtures/integration/roads_ms.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/roads_ms.geojson -------------------------------------------------------------------------------- /test/fixtures/integration/tiles/62092-50163-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles/62092-50163-17.jpg -------------------------------------------------------------------------------- /test/fixtures/integration/tiles/62092-50164-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles/62092-50164-17.jpg -------------------------------------------------------------------------------- /test/fixtures/integration/tiles/62093-50162-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles/62093-50162-17.jpg -------------------------------------------------------------------------------- /test/fixtures/integration/tiles/62093-50163-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles/62093-50163-17.jpg -------------------------------------------------------------------------------- /test/fixtures/integration/tiles/62093-50164-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles/62093-50164-17.jpg -------------------------------------------------------------------------------- /test/fixtures/integration/tiles/62094-50162-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles/62094-50162-17.jpg -------------------------------------------------------------------------------- /test/fixtures/integration/tiles/62094-50163-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles/62094-50163-17.jpg -------------------------------------------------------------------------------- /test/fixtures/integration/tiles/62094-50164-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles/62094-50164-17.jpg -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2060-1976-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2060-1976-12.png -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2060-1977-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2060-1977-12.png -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2060-1978-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2060-1978-12.png -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2061-1976-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2061-1976-12.png -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2061-1977-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2061-1977-12.png -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2061-1978-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2061-1978-12.png -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2062-1976-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2062-1976-12.png -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2062-1977-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2062-1977-12.png -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2062-1978-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2062-1978-12.png -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2063-1976-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2063-1976-12.png -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2063-1977-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2063-1977-12.png -------------------------------------------------------------------------------- /test/fixtures/integration/tiles_png/2063-1978-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/integration/tiles_png/2063-1978-12.png -------------------------------------------------------------------------------- /test/fixtures/validation/geojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/validation/geojson.json -------------------------------------------------------------------------------- /test/fixtures/validation/passing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/fixtures/validation/passing.json -------------------------------------------------------------------------------- /test/integration/test_classification_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_classification_labels.py -------------------------------------------------------------------------------- /test/integration/test_classification_labels_geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_classification_labels_geojson.py -------------------------------------------------------------------------------- /test/integration/test_classification_labels_linestring_geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_classification_labels_linestring_geojson.py -------------------------------------------------------------------------------- /test/integration/test_classification_labels_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_classification_labels_sparse.py -------------------------------------------------------------------------------- /test/integration/test_classification_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_classification_package.py -------------------------------------------------------------------------------- /test/integration/test_directory_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_directory_move.py -------------------------------------------------------------------------------- /test/integration/test_geotiff_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_geotiff_package.py -------------------------------------------------------------------------------- /test/integration/test_ms_bands_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_ms_bands_package.py -------------------------------------------------------------------------------- /test/integration/test_object_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_object_labels.py -------------------------------------------------------------------------------- /test/integration/test_object_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_object_package.py -------------------------------------------------------------------------------- /test/integration/test_segmentation_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_segmentation_labels.py -------------------------------------------------------------------------------- /test/integration/test_segmentation_labels_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/integration/test_segmentation_labels_sparse.py -------------------------------------------------------------------------------- /test/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/unit/test_filter.py -------------------------------------------------------------------------------- /test/unit/test_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/unit/test_label.py -------------------------------------------------------------------------------- /test/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/unit/test_utils.py -------------------------------------------------------------------------------- /test/unit/test_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/test/unit/test_validate.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/label-maker/HEAD/tox.ini --------------------------------------------------------------------------------