Skip to content

jazzido/mondrian-rest-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mondrian-rest demo project

This is an example project and testbed for mondrian-rest, a REST endpoint for the OLAP server Mondrian.

It implements a simple OLAP Cube with data from the UN COMTRADE database, as republished by the Observatory of Economic Complexity

Requirements

Installation

  • Download the DB dumpACHTUNG: it's a ~1.3 GB file.
  • Create a DB in your Monet server: monetdb create oec; monetdb release oec
  • Import the dump into your DB: xzcat oec_dump.sql.xz | mclient -u monetdb -d oec (this will take a while)
  • If needed, adjust the connection parameters in config.ru
  • Run: rackup

See also

mondrian-rest-foodmart: a similar demo project (easier to setup)

Example requests

Aggregations

World's export value, by year (JSON)

/cubes/Trade%20Flow/aggregate?drilldown[]=Year&measures[]=Exports

Argentina's exports and imports value, by year (CSV)

/cubes/Trade%20Flow/aggregate.csv?drilldown[]=Year&measures[]=Exports&measures[]=Imports&cut[]=Origin%20Country.South%20America.Argentina

Argentina's exports value to African countries, by year (Excel)

/cubes/Trade%20Flow/aggregate.xls?drilldown[]=Year&drilldown[]=Destination%20Country&measures[]=Exports&cut[]=Origin%20Country.South%20America.Argentina&cut[]=Destination%20Country.Africa

Total South America's exports of Live Animals to Germany, by year

/cubes/Trade Flow/aggregate.csv?drilldown[]=Year&measures[]=Exports&cut[]=Origin Country.South America&cut[]=Destination%20Country.Europe.Germany&cut[]=Product.Live%20Animals

Metadata

Get available cubes

/cubes

Get the definition of the Trade Flow cube

/cubes/Trade%20Flow

Get the definition and members of the Origin Country dimension

/cubes/Trade%20Flow/dimensions/Origin%20Country

Get a member of the Country level from the Origin Country dimension

/cubes/Trade%20Flow/dimensions/Origin%20Country/levels/Country/members/arg

License

The MIT License (MIT)

Copyright (c) 2015 Manuel Aristarán

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.

About

mondrian-rest testbed

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages