1
Go to file
2019-04-28 11:51:57 -07:00
build Fixing spelling mistake 2015-11-15 17:26:24 +09:00
cmd Cleanup 2015-09-01 18:41:37 +09:00
static Styling change 2016-02-14 13:20:04 -08:00
LICENSE update license file 2019-04-28 11:51:57 -07:00
README.md Updating README.md 2018-09-15 22:30:52 -07:00
search.go Fixes 2015-09-23 10:42:26 +09:00
types.go Link maps by lat/lon instead of address 2015-09-22 12:57:45 +09:00
util.go Update calculation for "nearby" 2015-11-22 14:34:40 +09:00

Restaurant Search

This project is a prototype semantic search web application that I developed as part of my master's thesis at Keio University. I presented the results of my research at iiWAS 2015 in Brussels, Belgium. My article, titled Restaurant Search with Predictive Multispace Queries was published in the in the ACM International Conference Proceeding Series.

You can get a better understanding of the goals of this experimental search system by referring to the overview presentation; it provides a brief overview of the points covered in my article. Although I no longer make the prototype accessible on the web, it is easy to get it up and running locally by following the instructions below.

Dependencies

Installation

  1. Install the search application:

    $ go get github.com/FooSoft/restaurant-search
    
  2. Install the client libraries (from the search/static directory):

    $ bower install
    
  3. Build and start the server (from the search/cmd directory):

    $ go build
    $ ./cmd
    
  4. Access the web application at localhost:8080.

License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.