https://github.com/zwimer/rpi-campus-paths
A helpful tool for RPI students who often get lost.
https://github.com/zwimer/rpi-campus-paths
Last synced: 8 months ago
JSON representation
A helpful tool for RPI students who often get lost.
- Host: GitHub
- URL: https://github.com/zwimer/rpi-campus-paths
- Owner: zwimer
- License: mit
- Created: 2016-12-25T19:37:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-18T23:43:16.000Z (about 8 years ago)
- Last Synced: 2025-06-11T22:49:46.473Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 2.68 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RPI-Campus-Paths
Are you a new student at RPI, someone who often gets lost, or a returning student who is trying to locate a building you had heard of but never visited? If so, this application is for you! RPI-Campus-Paths finds the shortest walk-able path between any two points at RPI. This application gives the user's instructions on how to get from point A to point B using known landmarks, a map, and even using the cardinal directions.
## Disclaimer
This application was made with a finite set of data points in the year 2015. It uses RPI's campus map of 2015 for it's information.
## Requirements
This application was written in Java 8, and requires a compiler which supports it
## Installation Instructions:
First, cd into the directory you would like to install this application in
Then git clone this repository and cd into it
```bash
git clone https://github.com/zwimer/RPI-Campus-Paths
cd RPI-Campus-Paths
```
Compile the program as follows
```bash
mkdir build && javac GUI/RPICampusPathsMain.java -d build/
```
Finally relocate the 'MapInfo' directory
```bash
mv MapInfo/ build/MapInfo/
```
## Usage
This application takes no arguments. Run it as follows
```bash
cd build
java GUI/RPICampusPathsMain
```