@nbbj/stroll
Version:
NodeJS computational library for finding the optimal walking path to be as exposed to nature as possible.
40 lines (37 loc) • 929 B
Flow
// @flow
// import { Weather } from "./api/Weather";
// import { Place } from "./api/Place";
// import { Color } from "./api/Color";
// import { Route } from "./api/Route";
// import { Geometry } from "./api/Geometry";
// import { Graph } from "./api/Graph";
/**
* ngraph.graph helper functions for weighted graph computation
* @property {Graph}
*/
export { Graph } from "./api/Graph";
/**
* Turf.js data and geometry helpers
* @property {Geometry}
*/
export { Geometry } from "./api/Geometry";
/**
* Weather-related data for analysis.
* @property {Weather}
*/
export { Weather } from "./api/Weather";
/**
* Yelp-related data for analysis.
* @property {Place}
*/
export { Place } from "./api/Place";
/**
* Field of view analysis for nature/greenery.
* @property {Color}
*/
export { Color } from "./api/Color";
/**
* Route-related data for analysis.
* @property {Route}
*/
export { Route } from "./api/Route";