Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4 from SgiobairOg/master
Browse files Browse the repository at this point in the history
Merging Initial Deploy from Development
  • Loading branch information
Jason Wilson authored Feb 4, 2018
2 parents 4f3be35 + 2fd4437 commit 03923f8
Show file tree
Hide file tree
Showing 13 changed files with 13,139 additions and 10,154 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,10 @@ jspm_packages
.serverless

src/config.js

# jshint configuration
.jshintrc

# Webstorm
.idea
.idea/
25 changes: 15 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# NAV-O

## _An Alexa Skill for Nautical Data_

NAV-O short for Navigation Officer is an Alexa Skill that leverages public available water-level data from the United State's network of Tide Stations to provide information on the current tide.
Expand All @@ -18,17 +19,21 @@ Code4HR welcomes contributions for these projects, if you're interested in contr

**Version 0.1**

- [ ] Responds to _invocation_ "Nav O."
- [ ] Understands _intent_ "what is the tide at <Station Name>"
* [x] Responds to _invocation_ "Nav O."
* [x] Understands _intent_ "what is the tide at <Station Name>"

**Future Options**

- [ ] Understands _intent_ "when is the next <High|Low> tide at <Station Name>"
- [ ] Understands _intent_ "what will the tide be at <Station Name> at <time>"
- [ ] Understands _intent_ "what are the <n...> nearest Tide Stations to me"
- [ ] Understands _intent_ "when is the next Max <Ebb|Flow> current at <Station Name>"
- [ ] Understands _intent_ "what will the current be at <Station Name> at <time>"
- [ ] Understands _intent_ "what are the <n...> nearest Current Stations to me"
- [ ] Understands _intent_ "what is the current at <Station Name>"
* [ ] Understands _intent_ "when is the next <High|Low> tide at <Station Name>"
* [ ] Understands _intent_ "what will the tide be at <Station Name> at <time>"
* [ ] Understands _intent_ "what are the <n...> nearest Tide Stations to me"
* [ ] Understands _intent_ "when is the next Max <Ebb|Flow> current at <Station Name>"
* [ ] Understands _intent_ "what will the current be at <Station Name> at <time>"
* [ ] Understands _intent_ "what are the <n...> nearest Current Stations to me"
* [ ] Understands _intent_ "what is the current at <Station Name>"

**Supporting Feature Request**

* [ ] Automate retrieval of tide station data

**Forked From** [Pressure Check](https://github.com/raelshark/Alexa_PressureCheck) by @raelshark
**Forked From** [Pressure Check](https://github.com/raelshark/Alexa_PressureCheck) by @raelshark
1,767 changes: 1,767 additions & 0 deletions assets/Alexa_Nav-O_Icon.ai

Large diffs are not rendered by default.

Binary file removed assets/Icon_Large.psd
Binary file not shown.
Binary file removed assets/Icon_Small.psd
Binary file not shown.
Binary file added assets/export/Alexa_Nav-o_Icon_108px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/export/Alexa_Nav-o_Icon_512px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 11 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
'use strict';

/**
* This is a simple file that aliases your skill handler to a root
* level file so that you don't have to tinker with Lambda handler paths.
*
* NAV-O
* An Alexa Skill for Accessing Public US Tide Data
*
* Code for Hampton Roads
* See LICENSE.txt for License
*/


/**
* Alias skill handler to root.
* This will make the default lambda value of "index.handler" work.
*/

Expand Down
Loading

0 comments on commit 03923f8

Please sign in to comment.