Git Product home page Git Product logo

blelocalization's Introduction

BLELocalization has two functions: web api and fingerprint data management.
Now we are refactoring them and web api woulbe be deprecated (use iOS framework or c++ runtime).
We are planning to update this page soon.

BLE Localization

This is a Bluetooth LE localization library to locate smartphones by estimating position from beacon signal strength. The localization algorithm is based on Monte Carlo localization using a particle filter which integrates radio wave signal strength and various sensor data of smartphones to localize them.

About

About HULOP

License

MIT

Dependent libraries for core library

library locations

  • location-service-library/lib/
  • commons-math3-3.3.jar
  • wink-1.4.jar

Sample Web API

The localization library is wrapped by an example servlet. (You can try) This section describes about Web API that calculate location from beacon signals and motion data.

POST /locations/beacons

Input (post)

To localize a user carrying a smartphone, multiple pairs of beacon identifier (UUID, major id and minor id) and Received Signal Strength Indicator (RSSI) received by a smartphone at some interval are input to the library.

Data format example (JSON)

{
  "uuid": "00000000-0000-0000-0000-000000000000",
  "data": [
    {
      "major": 1,
      "minor": 1,
      "rssi": -70
    },
    {
      "major": 1,
      "minor": 2,
      "rssi": -75
    }
  ],
  "sensorCSV": "<motion data csv as a string including new lines.>"
}

Motion data

In the case that motion data are collected in addition to beacon data, time-series data from accelerometer and gyroscope are input to the library with the beacon data.

Case 1: Process motion data in the library.

Motion data is input in the following format. You need to input all motion data between the last two beacon signal sampling. (i.e. iOS provide beacon data every second so you will input all motion data within a second.)

Timestamp, "Acc",  X-acceleration, Y-acceleration, Z-acceleration
Timestamp, "Motion", Pitch-angle, Roll-angle, Yaw-angle

Example (CSV)

1444834800,	Acc,	0.98407,	-0.143784,	-0.066208
1444834805,	Motion	0.185809	1.465061	-1.530919
1444834810,	Acc,	0.985413,	-0.141495,	-0.07077
1444834816,	Motion	0.186237	1.465726	-1.533538
Case 2: Preprocess on a smartphone

If you want to reduce amount of data transfer and do not care user's orientation, you can just specify whether a user is walking or not by processing motion data on a smartphone.

Timestamp, "Moving", Indicator if a user is moving(1) or not(0).

Example (CSV)

1444834800,	Moving,	0
1444834810,	Moving,	1

Response

Returns user's two-dimensional location (x, y, floor).

Data format example (JSON)

{"x": 1, "y": 1, "z": 0}

When user's motion is also measured, orientation is appended to the output.

{"x": 1, "y": 1, "z": 0, "orientation": 1.57}

Test Web API on your machine

Try a sample web application for BLE-based localization. In this section, Eclipse is used to explain how to run the sample web app.

Prerequisites

Dependent libraries for Web app

library locations

  • LocationService/WebContent/js/lib/

  • jquery/jquery-1.11.2.js

  • jquery/jquery-1.11.2.min.js

  • OpenLayers-2.13.1/

  • jquery-ui-1.11.4/

  • DataTables-1.10.6/

  • LocationService/WebContent/WEB-INF/lib

  • mongo-java-driver-2.12.0.jar

Launch and use the sample app

Setup

  1. Clone this repository.
  • Import all projects into your Eclipse workspace.
  • Put the dependent libraries by following requirements.txt in the projects.
  • Launch the web application on a web server on Eclipse.

Localization on sample data

  1. Open a sample web page. It takes a while for initialization. http://localhost:9080/LocationService/hulo_sample.html
  2. Start localization demo by clicking the start button.

Fingerprinting data for the library

To use this library in the real world, fingerprinting i.e. collecting BLE RSSI readings at known locations is necessary.

Data Directory

  1. Create a project directory to store the prepared data as following structure and put it in location-service-resource/projects/hulo/localization/resource/projects

     /<your_project_name>
     	/training
     		/<any_name>.json
     	/map
     		/map.json
     	/format.json
    
  2. Update a setting property configurations.project in LocationService/resource/hulo/localization/resource/settings/deployment.json to <your_project_name>

  3. Launch the web app as previously explained.

Fingerprint data

Fingerprint data collected by a smartphone should be stored in the following format.

Data format example (JSON)

[{
	"beacons": [{
		"timestamp": 1444834000,
		"uuid": "00000000-0000-0000-0000-000000000000",
		"data": [{
			"major": 1,
			"minor": 1,
			"rssi": -77.0
		}, ...]
	}, ...],
	"information": {
		"x": 2.0,
		"y": 1.0,
		"absx": 2.0,
		"absy": 1.0,
		"floor_num": 0.0,
		"floor": 0.0
	}
}]

Test data

Test data is used to evaluate the accuracy of the localization algorithm at given data including fingerprints. Test data consist of locations, beacon RSSI readings and motion data.

Test data format (CSV)

Timestamp, "Acc",  X-acceleration, Y-acceleration, Z-acceleration
Timestamp, "Motion", Pitch-angle, Roll-angle, Yaw-angle
Timestamp, "Beacon", X-position, Y-position, Z-position, Floor, #Beacons, Major, Minor, RSSI, ...

The third line contains a location, the number of observed beacons, and pairs of beacon identifier and RSSI.

Beacon locations

This library uses BLE beacon positions as auxiliary information.

Data format example (GeoJSON)

{
	"type": "FeatureCollection",
	"features": [{
    "type": "Feature",
    "properties": {
      "type": "beacon",
      "uuid": "00000000-0000-0000-0000-000000000000",
      "major": 1,
      "minor": 2,
		},
		"geometry": {
			"type": "Point",
			"coordinates": [1.0, 2.0]
		}
	}, ...
	]
}

Virtual fingerprinting data generator

In this sample app, an editor to create a virtual room where beacons and walls are installed is provided. The output of the editor is input to a tool to generate synthetic training and test data to be input to the localization library. The format of the data generated by these tools meets the input specifications of the library.

Edit a virtual room

  1. Open an editor to create a virtual room. http://localhost:9080/LocationService/env_editor.html
  • Add beacons and walls on the editor.
  • Add walk path used to synthesize test data.
  • Add grid used to synthesize training data.
  • Export the created environment data in GeoJSON format by clicking an export button.

Generate synthetic data

  1. Write a setting JSON file to define names of files to be generated. An example is provided in location-service-library/example directory.
  • Generate synthetic data by running SyntheticDataGenerator in location-service-library with arguments as follows: SyntheticDataGenerator -i <PATH_TO_SETING_FILE>/<SETTING_FILE_NAME>.json Generated data will be saved to a directory designated by the setting file.

Fingerprinting Management

TBD

blelocalization's People

Contributors

daisukes avatar dsato80 avatar itohtaka avatar kentarou-fukuda avatar muratams avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

blelocalization's Issues

Demo warnings

Hi,

I receive the following console messages when running the demo:

[WARNING ] SRVE0190E: File not found: /data/floorplans
[WARNING ] SRVE0190E: File not found: /data/samplings
[WARNING ] SRVE0190E: File not found: /location/beacons/null

Thank you for this project. Looking forward to contributing in the future.

Fingerprint data

I'm interesting in this project and I want to use this library in the real world, but how can I get the data of model.json and trainDataSample.json

Value X, Y, Z always different

Hi Team's,
Please see and help me answer a question:

Value X, Y, Z return after call function:

{
"uuid": "00000000-0000-0000-0000-000000000000",
"data": [
{
"major": 1,
"minor": 1,
"rssi": -70
},
],
"sensorCSV": ""
}

Run API : X = A, Y = B, Z = C
Run API again: X = A', Y = B', Z = C'
Run API again : X = A'', Y = B'', Z = C''

Why each run is X, Y, Z different value?

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.