tilecover 0.3.0

Generate the minimum number of tiles to cover a geometry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM ubuntu:17.10

RUN rm /bin/sh && ln -s /bin/bash /bin/sh
ENV SHELL /bin/bash

# set the locale
RUN apt-get update -y \
    && apt-get install -y curl git gcc build-essential

RUN curl https://sh.rustup.rs -sSf | sh -s -- -y

WORKDIR /usr/local/src/tilecover
ADD . /usr/local/src/tilecover

CMD  ~/.cargo/bin/cargo test