Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 1 KB

README.md

File metadata and controls

49 lines (31 loc) · 1 KB

Geoserver tool API

This API is designed to perform various operations on raster data, such as subtraction, averaging, and region-specific analysis. It uses Flask for the server.

Requirements

Ensure you have the following installed:

  • Python >= 3.9
  • Flask

Install

Virtual environment creation

Before installing first create a virtual environment to keep the dependencies only in the project to be used, to create the virtual environment in the terminal within the project run the following command

py -m venv [virtual_environment_name]

Then the virtual environment is started

[virtual_environment_name]/Scripts/activate

Now you can continue with the installation.

To get started with the project, follow these steps:

  1. Clone the repository:
git clone https://github.com/CIAT-DAPA/aclimate_geoserver_tools_api
cd aclimate_geoserver_tools_api
  1. Install dependencies:
pip install -r requirements.txt
  1. Run the development server:
python main.py