All Projects → IBM → ibmpairs

IBM / ibmpairs

Licence: BSD-3-Clause License
open source tools for interaction with IBM PAIRS:

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to ibmpairs

Calcite Avatica
Mirror of Apache Calcite - Avatica
Stars: ✭ 130 (+465.22%)
Mutual labels:  big-data, geospatial
Richdem
High-performance Terrain and Hydrology Analysis
Stars: ✭ 127 (+452.17%)
Mutual labels:  big-data, geospatial
aut
The Archives Unleashed Toolkit is an open-source toolkit for analyzing web archives.
Stars: ✭ 111 (+382.61%)
Mutual labels:  big-data, big-data-analytics
v6.dooring.public
可视化大屏解决方案, 提供一套可视化编辑引擎, 助力个人或企业轻松定制自己的可视化大屏应用.
Stars: ✭ 323 (+1304.35%)
Mutual labels:  big-data, big-data-analytics
rastercube
rastercube is a python library for big data analysis of georeferenced time series data (e.g. MODIS NDVI)
Stars: ✭ 15 (-34.78%)
Mutual labels:  big-data, geospatial
Geopyspark
GeoTrellis for PySpark
Stars: ✭ 167 (+626.09%)
Mutual labels:  big-data, geospatial
Magellan
Geo Spatial Data Analytics on Spark
Stars: ✭ 507 (+2104.35%)
Mutual labels:  big-data, geospatial
Calcite
Apache Calcite
Stars: ✭ 2,816 (+12143.48%)
Mutual labels:  big-data, geospatial
Movies-Analytics-in-Spark-and-Scala
Data cleaning, pre-processing, and Analytics on a million movies using Spark and Scala.
Stars: ✭ 47 (+104.35%)
Mutual labels:  big-data, big-data-analytics
egis
Egis - a handy Ruby interface for AWS Athena
Stars: ✭ 38 (+65.22%)
Mutual labels:  big-data, big-data-analytics
fgpv-vpgf
RAMP2 FGP Visualiser / Visualisateur pour la PGF PCAR2 - The Reusable Accessible Mapping Platform (RAMP), also known as the Federal Geospatial Platform Visualiser (FGPV), is a Javascript based web mapping platform that provides a reusable, responsive and WCAG 2.1 "AA" compliant common viewer platform for the Government of Canada. This is an unsu…
Stars: ✭ 34 (+47.83%)
Mutual labels:  geospatial
predictionio-template-similar-product
PredictionIO Similar Product Engine Template (Scala-based parallelized engine)
Stars: ✭ 50 (+117.39%)
Mutual labels:  big-data
hadoop-data-ingestion-tool
OLAP and ETL of Big Data
Stars: ✭ 17 (-26.09%)
Mutual labels:  big-data
v6d
vineyard (v6d): an in-memory immutable data manager. (Project under CNCF)
Stars: ✭ 557 (+2321.74%)
Mutual labels:  big-data-analytics
science-result-extractor
No description or website provided.
Stars: ✭ 59 (+156.52%)
Mutual labels:  ibm-research
uav-lidar-analytics-course
NCSU GIS595/MEA792: UAV/lidar Data Analytics
Stars: ✭ 23 (+0%)
Mutual labels:  geospatial
hotmap
WebGL Heatmap Viewer for Big Data and Bioinformatics
Stars: ✭ 13 (-43.48%)
Mutual labels:  big-data
vxquery
Mirror of Apache VXQuery
Stars: ✭ 19 (-17.39%)
Mutual labels:  big-data
pypar
Efficient and scalable parallelism using the message passing interface (MPI) to handle big data and highly computational problems.
Stars: ✭ 66 (+186.96%)
Mutual labels:  big-data
actinia core
Actinia Core is an open source REST API for scalable, distributed, high performance processing of geographical data that uses mainly GRASS GIS for computational tasks (DOI: https://doi.org/10.5281/zenodo.5879231)
Stars: ✭ 41 (+78.26%)
Mutual labels:  geospatial

IBM PAIRS Geoscope open source modules

Build Status PyPI Package Conda Version

This repository provides an interface to the geo-spatial big data platform IBM PAIRS Geoscope.

E.g. the module in the subdirectory paw serves as a wrapper employing the IBM PAIRS core RESTful API served through the host reachable via https://pairs.res.ibm.com to load data into (native) Python data structures.

General Notes

If you like to contribute, please read CONTRIBUTING.md first. A list of maintainers is recorded in MAINTAINERS.md.

Installation and Usage

If you have installed the Python package manager PIP, simply run

pip install --user ibmpairs

Alternatively,

conda install -c conda-forge ibmpairs

works as well. Then you import the IBM PAIRS API wrapper via:

from ibmpairs import paw

Note: If you need a bleeding-edge, potentially instable development version you can also run

pip install --user git+https://github.com/ibm/ibmpairs@develop

Getting started

Simply get your feet wet with the tutorial. Having cloned into the repo, the full API documentation you can generate by running

cd docs && make html

to open docs/_build/html/index.html with your favorite browser, provided you have installed Sphinx and the corresponding ReadTheDocs theme by running e.g.

pip install sphinx sphinx_rtd_theme

Running in a Docker container

A self-contained environment can be built with Docker using

git clone https://github.com/ibm/ibmpairs
cd ibmpairs
docker build -t ibmpairs .

and launched via

docker run \
    -dit \
    -p 18380:18380 \
    --name ibmpairs \
    ibmpairs:latest

or, instead of the above, simply docker-compose up ibmpairs such that you can type into your browser

http://localhost:18380
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].