/PolyMap

Union and intersection on geojson polygons

Primary LanguagePythonMIT LicenseMIT

PolyMap

Do union and intersection on geojson polygons

Simple application using Django and Ajax with RESTful requests

Github

Installation /development

Developed on linux with python3.6

Docker installation

  • Install Docker: https://docs.docker.com/install/

  • Get docker image:

    docker pull pederbg/polymap
  • Clone repo and move to project folder

    git clone https://github.com/PederBG/PolyMap.git
    cd PolyMap
  • Run docker image:

    ./docker/run_docker.sh

Normal installation

  • Clone repo and install requirements:

    git clone https://github.com/PederBG/PolyMap.git
    cd PolyMap
    pip -r requirements.txt
  • Create database and run server

    python manage.py makemigrations
    python manage.py migrate
    python manage.py runserver