Skip to content

The Living Atlas is a full stack web application that collects and displays information relating to the Columbia River Basin. Two teams worked on this during the Spring and Fall semesters of 2023.

Notifications You must be signed in to change notification settings

mitchellkolb/living-atlas

Repository files navigation

Living Atlas

Github top language Github language count Repository size Github stars

Website Badge Website Badge Website Badge Website Badge Website Badge Website Badge Website Badge Website Badge

This is a showcase of the Living Atlas Database and Map teams product that we made for our 2023 WSU Capstone project. We produced/deployed a full stack web application that collects and displays information relating to the Columbia River Basin.

Poster

Watch the Full Video Demos Here

Full Video Demo Here

Full Video Demo Here

Full Video Demo Here

Full Video Demo Here


Table of Contents


What I Learned in this Project

  • How to plan, document, develop, and work as a team to complete a common goal, which was to produce a functional website that meets the client's expectations.
  • How to create and use APIs with Swagger UI.
  • How to use Google Cloud API to store files using buckets.
  • Creating DBMS and its corresponding ER diagrams.
  • Developing a website with modern security practices like hashing, no client-side logs of hidden items, and account management.
  • Writing professional documents related to developing software.

Tools Used / Development Environment

  • React (Frontend)
  • Python (Backend)
  • PostgreSQL (Database)
  • VS Code
  • Terminal
  • Windows 10

Living Atlas Specific Services

Team / Contributors / Teachers

CEREO Team

  • Dr. Jan Boll
  • Dr. Julie Padowski
  • Dr. Hannah Haemmerli
  • Jacqueline Richey McCabe.

How to Set Up

These instructions are for a local instance, you will need to terminal instances to run the frontend and backend. Open a new terminal and check that the following libraries are installed:

  • python3
  • pip (used for installing required libraries to run the backend)
  • node.js (enables npm commands)

Running the Frontend:

  1. Go into the /LivingAtlas1-main/client directory.
  2. Type npm install to enable React and all of the node modules used.
  3. This github repo is currently connected to our hosting service so our frontend is setup for that. To run this locally you need to redirect the frontend to run on your localhost. You can do this by uncommenting the baseURL line of code in the /client/src/api.js file that matches your open port.
  4. Run the command npm start to initialize the frontend on an open port like 3000.

Running the Backend:

  1. Open a new terminal and navigate to the /LivingAtlas1-main/backend directory.
  2. Use pip install -r requirements.txt to install all of the requirements.
  3. Use uvicorn main:app --reload to locally host the backend on port 8000 (--reload makes the backend restart anytime an update happens to a file; you can choose to leave this part out).
    • If the above command doesn’t work, try running python .\main.py instead.
  4. To run the docs for the backend and test each individual endpoint, go to your open port link http://localhost:8000/docs in your browser.

Troublshooting Tips

  • Connecting the Frontend and Local Backend:**
    1. By default, the frontend should be connected to the hosted backend on Render. This can be checked by looking into the JavaScript file named api.js found inside the /client/src directory.
    2. Each baseURL found in this file will have a comment describing where it is deployed. Comment out all of these hosted baseURL statements.
    3. To switch to the local backend, simply uncomment baseURL: 'http://localhost:8000'.

To close the application, go back to each terminal and use the command Ctrl+C to end the process and free up localhost ports 3000 and 8000. If you forget to do this, it's not the end of the world, but it might not let you delete files in the project without restarting your PC. Also, if you do npm start again, it will ask you to open it on port 3001 instead since port 3000 is busy.

For full functionality you should also have a google cloud account and paste your credentials into the ~/LivingAtlas1-main/backend/ServiceKey_GoogleCloud.json where the "..." are. This allows the cards in the site to hold files.

Project Overview

The Living Atlas project is a comprehensive web application designed to address the challenge of scattered and inaccessible environmental data related to the Columbia River Basin. Developed with the aim of creating a hub for the collection, sharing, and access to a wide variety of environmental data. The application primarily is meant for groups such as tribal communities, academic institutions, and government agencies. Built using React for the front end and FastAPI for the back end, Living Atlas provides a user-friendly interface for data collection and a robust system for data management. The database utilizes ElephantSQL to store all application data in the cloud, ensuring scalability and reliability. Additionally, the platform features an interactive data visualization through an integrated map-based interface using mapbox.

Key features of the Living Atlas include collection and management of data, external data connections, and data visualization. The data collection feature offers a simple interface for uploading environmental data from various sources, with approval processes to ensure accuracy. The data management system supports efficient storage, searchability, sorting, filtering, and analysis of data. The platform promotes collaboration through data sharing and integrates external data sources like NHD stream/Urban Area datasets to broaden the range of available information. The interactive map-based visualization tool enhances understanding by presenting data in a spatial context.

This project demonstrates a successful collaboration between multiple teams, each focusing on specific aspects such as the database and backend, or the user interface and interactive map. Together, these components created a cohesive application that aims to make environmental data accessible and useful to a wide audience.

Project Details

Introduction

In this project, we deployed the Living Atlas. The Living Atlas is a web application aimed at solving the problem of scattered and inaccessible environmental data. Our goal is to provide a central location for collecting, sharing, and accessing environmental data, making it available to a wide range of stakeholders including tribal communities, academic institutions, and possible environmental government agencies. The platform will allow for easy viewing by everyone but will require authentication for uploading data to ensure the validity and accuracy of the information being shared. Additionally, the platform will be able to connect to external datasets, further expanding the range of environmental data available on the platform.

Collaboration and Meetings

The Living Atlas project was a collaborative effort involving a dedicated development team and our clients from the Center for Environmental Research, Education, and Outreach (CEREO). Our team, composed of Joshua Long, Mitchell Kolb, and Sierra Svetlik, along with the Living Atlas Map team, met weekly to discuss progress, address challenges, and plan the next steps. We also held weekly meetings with our clients, including Dr. Jan Boll, Dr. Julie Padowski, and Dr. Hannah Haemmerli, to ensure our work aligned with their expectations and requirements. These regular interactions facilitated effective communication, timely feedback, and a clear understanding of the project goals, contributing significantly to the project's success.

Initially, the Living Atlas Database team and the Map team operated independently, holding biweekly meetings with Prof. Subu and weekly meetings with the CEREO team. In the second semester, both development teams merged and began working from the same GitHub repository, continuing to maintain weekly meetings with the client and biweekly meetings with Prof. Subu. Throughout our two semesters working on this project, these meetings allowed us to display and demo the current status of the website, ensuring alignment and progress towards our goals.

Technical Details

Frontend

The frontend of the Living Atlas project is built using React, a popular JavaScript library for building user interfaces. The design focuses on creating an intuitive and user-friendly experience for interacting with environmental data.

  • Technologies Used:

    • React: For building the dynamic user interface.
    • Axios: For making HTTP requests to the backend APIs.
  • Key Components:

    • Header Component: Displays the logo, navigation links, search bar, filtering button, and upload button.
    • Upload Form Component: Allows users to upload data, including metadata such as name, email, funding, organization, title, link, description, tags, latitude, longitude, and file.
    • Content Area Component: Fetches data from the backend and renders it using the Card components.
    • Card Component: Displays detailed information about each data point, including interactive features like downloading files.

Backend

The backend of the Living Atlas project is developed using FastAPI, a modern web framework for building APIs with Python. It handles the application's data processing and serves as the middleman between the frontend and the database.

  • Technologies Used:

    • FastAPI: For building the RESTful endpoints.
    • SQLAlchemy: For database interaction and ORM (Object-Relational Mapping).
    • Google Cloud API: For storing and retrieving the files.
    • Psycopg2: For sending postgreSQL requests to the database
  • Key Endpoints:

    • Register Account Endpoint: Handles user registration with necessary validations.
    • Login Endpoint: Authenticates users and generates JWT tokens.
    • Profile Cards Endpoint: Retrieves all cards uploaded by a specific user.
    • Upload Card Endpoint: Allows authenticated users to upload new data points.
    • Delete Card Endpoint: Enables users to delete their uploaded data points.
    • Retrieve All Cards Endpoint: Fetches the most recent data points for display.
    • Filter Cards by Custom Tag Endpoint: Filters data points based on user-defined tags.
    • Populate Map Point Locations Endpoint: Supplies the frontend map with the necessary geographical data.

Database

The database for the Living Atlas project is managed using PostgreSQL and hosted on ElephantSQL. It stores all the environmental data, user information, and metadata associated with the data points.

  • Technologies Used:

    • PostgreSQL: For relational database management.
    • ElephantSQL: A cloud-based PostgreSQL service for hosting the database.
  • Schema Design:

    • Users Table: Stores user information, including usernames, hashed passwords, and email addresses.
    • Categories Table: Manages data categories for classification purposes.
    • Cards Table: Contains details about each data point, including metadata and geographical information.
    • Files Table: Stores information about files uploaded with each data point.
    • Tags Table: Manages custom tags associated with data points.
    • CardTags Table: Links data points to their respective tags for efficient querying.

Requirements and Deployment Plan

  • Functional Requirements:

    • Data collection with a user-friendly interface.
    • Efficient data management, including sorting, filtering, and analysis.
    • Secure data sharing with controlled access.
    • Integration with external data sources.
    • Interactive map-based data visualization.
  • Non-Functional Requirements:

    • High performance and scalability.
    • Intuitive and accessible user interface.
    • Robust security measures to protect user data.
    • Compatibility with various browsers and devices.
    • Reliable and maintainable codebase.
  • Deployment Plan:

    • Staging Environment: A separate environment that replicates the production setup for testing and validation. Uses Docker for containerization and CI/CD tools like GitHub Actions for automated deployment.
    • Production Environment: Deployed on cloud platforms such as Netlify for scalability and reliability. The backend APIs are hosted on a Render.com server. The PostgreSQL database is managed via ElephantSQL with regular backups and monitoring.

Files and Structure

  • /client: This folder contains all the front-end code.
  • /backend: This folder contains all the code required to run the backend. Additionally, you'll find test code for using Google Cloud services.
  • /database: This folder contains the ER diagram and table schema for creating a PostgreSQL database locally and some test data to insert into the database to have the front-end and backend work together.

Results and Presentation

When the project was finished and deployed, our stakeholders/clients said they were very pleased with how their website turned out. During our presentation, where the Living Atlas team and all the other teams showcased their own projects, the Living Atlas received many compliments. Both the Living Atlas Map and Database teams are very proud of the work we produced.

Future Work

  1. Front-End For the future, we plan to enhance the functionality of Living Atlas by enabling user submitted geological datasets that can be overlayed on the interactive map. This would allow the map to become more personalized as the site matures. We also planned to revamp the submission form for creating new cards to make the process more visually pleasing.

  2. Back-End For the future of the backend, we would like to create more card moderation tools/endpoints. This would include the ability to edit already existing cards, have an endpoint to verify admin users, and allow those users to delete any card. Another feature the backend would like to implement is the ability to view/download only files. Currently, files are attached to cards, which require a card to be made, but we could add the feature similar to a file explorer page where all the files are listed, and the user can download any file they desire.

  3. Database For the future of the database, all that will need to be done is to manage the tables as needed, expanding and adding new tables if it is necessary to store more information. The instance used to run the database will also need to be upgraded should a large number of people start using the app.

  4. Misc. This website is currently deployed on Netlify.com and has a generic Netlify link. A goal our team could work on in the future is to get a custom domain and pair it with this deployed version of the site.


Acknowledgments

This codebase and all supporting materials was made as apart of two courses for my undergrad at WSU for CPTS 421 & 423 - Software Design Project 1 & 2 in the Spring of 2023 and Fall of 2023. This project was originally submitted to a private repository as all WSU assignments are, that has forking disabled. This repository serves as a backup place to showcase this project. The original repo is linked here.

About

The Living Atlas is a full stack web application that collects and displays information relating to the Columbia River Basin. Two teams worked on this during the Spring and Fall semesters of 2023.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published