FIWARE Context Providers
This tutorial builds on the Store entity created in the previous stock management example and enables a user to retrieve data about a store which is not held directly within the Orion Context Broker.
The docker-compose
file for this tutorial can be found on GitHub:

GitHub
Context Providers
"Knowledge is of two kinds. We know a subject ourselves, or we know where we can find information about it."
— Samuel Johnson (Boswell's Life of Johnson)
Within the FIWARE platform, an entity represents the state of a physical or conceptural object which exists in the real world. For example, a Store is a real world bricks and mortar building.
The context data of that entity defines the state of that real-world object at a given moment in time.
In all of the tutorials so far, we are holding all of the context data for our Store entities directly within the Orion Context Broker, for example stores would have attributes such as:
- A unique identifier for the store e.g.
urn:ngsi-ld:Store:002
- The name of the store e.g. "Checkpoint Markt"
- The address "Friedrichstraße 44, 10969 Kreuzberg, Berlin"
- A physical location e.g. 52.5075 N, 13.3903 E
As you can see, most of these attributes are completely static (such as the location) and the others are unlikely to be changed on a regular basis - though a street could be renamed, or the store name could be rebranded.
There is however another class of context data about the Store entity which is much more dynamic, information such as:
- The current temperature at the store location
- The current relative humidity at the store location
- Recent social media tweets regarding the store
This information is always changing, and if it were held in a database, the data would always be out-of-date. To keep the context data fresh, and to be able to retrieve the current state of the system on demand, new values for these dynamic data attributes will need to be retrieved whenever the entity context is requested.
Smart solutions are designed to react on the current state of the real-world. They are "aware" since they rely on dynamic data readings from external sources (such social media, IoT sensors, user inputs). The FIWARE platform makes the gathering and presentation of real-time context data transparent, since whenever an NGSI request is made to the Orion Context Broker it will always return the latest context by combining the data held within its database along with real-time data readings from any registered external context providers.
In order to be able to fulfil these requests, the Orion Context Broker, must first be supplied with two types of information:
- The static context data held within Orion itself (Entities that Orion "knows" about)
- Registered external context providers associated with existing entities (Entities that Orion can "find information" about)
Entities within a stock management system
Within our simple stock management system, our Store entity currently returns id
, name
, address
and location
attributes.
We will augment this with additional real-time context data from the following free publicly available data sources:
- The temperature and relative humidity from the Weather Underground API
- Recent social media tweets regarding the store from the Twitter API
The relationship between our entities is defined as shown:

Architecture
This application will only make use of one FIWARE component - the Orion Context Broker. Usage of the Orion Context Broker is sufficient for an application to qualify as “Powered by FIWARE”.
Currently, the Orion Context Broker relies on open source MongoDB technology to keep persistence of the context data it holds. To request context data from external sources, we will now need to add a simple Context Provider NGSI proxy.
Therefore, the architecture will consist of three elements:
- The Orion Context Broker server which will receive requests using NGSI
- The underlying MongoDB database associated to the Orion Context Broker server
- The Context Provider NGSI proxy which will will:
- receive requests using NGSI
- makes requests to publicly available data sources using their own APIs in a proprietory format
- returns context data back to the Orion Context Broker in NGSI format.
Since all interactions between the elements are initiated by HTTP requests, the entities can be containerized and run from exposed ports.

The necessary configuration information for the Context Provider NGSI proxy can be seen in the services section the of the associated docker-compose.yml
file:
The context-provider
container is driven by environment variables as shown:
The other context-provider
container configuration values described in the YAML file are not used in this tutorial.
The configuration information for MongoDB and the Orion Context Broker has been described in a previous tutorial
Prerequisites
Docker
To keep things simple both components will be run using Docker. Docker is a container technology which allows to different components isolated into their respective environments.
- To install Docker on Windows follow the instructions here
- To install Docker on Mac follow the instructions here
- To install Docker on Linux follow the instructions here
Docker Compose is a tool for defining and running multi-container Docker applications. A YAML file is used configure the required services for the application. This means all container sevices can be brought up in a single commmand. Docker Compose is installed by default as part of Docker for Windows and Docker for Mac, however Linux users will need to follow the instructions found here
Cygwin
We will start up our services using a simple bash script. Windows users should download cygwin to provide a command line functionality similar to a Linux distribution on Windows.
Context Provider NGSI proxy
A simple nodejs Express application has been bundled as part of the repository. The application offers an NGSI v1 interface for four different context providers - the Weather Underground API, the Twitter Search API and two dummy data context providers - a static data provider (which always returns the same data) and a random data context provider (which will change every time it is invoked).
More information about the proxy endpoints can be found here
- In order to access the Weather Underground API, you will need to sign up for a key at https://www.wunderground.com/weather/api/
- In order to access the Twitter Search API, you will have to create an app in Twitter via https://apps.twitter.com/app/new to obtain a Consumer Key & Consumer Secret.
Replace the placeholders in docker-compose.yml
in the root of the repository with the values you obtain for your application:
If you do not wish to sign-up for an API key, you can use data from the random data context provider instead.
Start Up
All services can be initialised from the command line by running the bash script provided within the repository:
This command will also import seed data from the previous Stock Management example on startup.