GithubHelp home page GithubHelp logo

johnjohndoe / openinghoursparser Goto Github PK

View Code? Open in Web Editor NEW

This project forked from simonpoole/openinghoursparser

0.0 2.0 0.0 3.61 MB

Parser for string values according to the OSM opening hours specification

License: MIT License

Java 100.00%

openinghoursparser's Introduction

OpeningHoursParser

This is a very simplistic parser for string values according to the OSM opening hours specification.

It parses 144'319 (89%) of 161'268 unique test strings in non-strict mode. The remaining 16'949 are likely valid errors, spot checking shows that they have obvious issues. In strict mode further 12'546 fail.

Deviations from the grammar as of this version of the opening hours specification in all modes:

  • case insensitive
  • minutes in times optional
  • leading 0s in times optional
  • unicode EN DASH character is allowed for hyphen

In non-strict mode the following further differences are allowed:

  • three-character weekday abbreviations
  • times extending in to the next day that are missing the extra 24 hours are corrected
  • AM and PM time specifications are allowed

Converting the data structures generated by parsing back to strings will result in correct data according to the specification.

Usage

try {
	OpeningHoursParser parser = new OpeningHoursParser(
		new ByteArrayInputStream(line.getBytes()));
	ArrayList<Rule> rules = parser.rules(strict);
	// ...
} catch() {
	// ...
}

Including in your project

You can either download the jar from GitHub or add the following to your build.gradle file(s):

repositories {
    maven {
    	jcenter()
    }
}
dependencies {
    compile "ch.poole:OpeningHoursParser:0.1.2"
}

openinghoursparser's People

Contributors

simonpoole avatar johnjohndoe avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.