All Projects → indrz → Indrz

indrz / Indrz

Licence: gpl-3.0
Indoor mapping, routing system for orientation and wayfinding or facility management

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Indrz

Server
Django server for Travel Mate (Project: nomad)
Stars: ✭ 36 (-47.83%)
Mutual labels:  django, django-rest-framework
Django Vue Template
Django Rest + Vue JS Template
Stars: ✭ 1,155 (+1573.91%)
Mutual labels:  django, django-rest-framework
Ponee
A lightweight Django template ready for Heroku
Stars: ✭ 41 (-40.58%)
Mutual labels:  django, django-rest-framework
Djangorestframework Mvt
Serve Mapbox Vector Tiles with Django and Postgres
Stars: ✭ 33 (-52.17%)
Mutual labels:  django, django-rest-framework
Django React
This a simple Django and React demo application
Stars: ✭ 63 (-8.7%)
Mutual labels:  django, django-rest-framework
Postgraduation
University management platform dedicated for post-graduation in computer science field using django rest framework.
Stars: ✭ 35 (-49.28%)
Mutual labels:  django, django-rest-framework
Drf Recaptcha
Django REST framework reCAPTCHA
Stars: ✭ 47 (-31.88%)
Mutual labels:  django, django-rest-framework
Timed Backend
Django API for the Timed application
Stars: ✭ 15 (-78.26%)
Mutual labels:  django, django-rest-framework
Drf Nested Routers
Nested Routers for Django Rest Framework
Stars: ✭ 1,098 (+1491.3%)
Mutual labels:  django, django-rest-framework
Django Rest Framework Tricks
Collection of various tricks for Django REST framework.
Stars: ✭ 52 (-24.64%)
Mutual labels:  django, django-rest-framework
Djangorestframework Book
Django REST framework 3 中文文档, API参考, 最佳实践指南
Stars: ✭ 28 (-59.42%)
Mutual labels:  django, django-rest-framework
Best Of Web Python
🏆 A ranked list of awesome python libraries for web development. Updated weekly.
Stars: ✭ 1,118 (+1520.29%)
Mutual labels:  django, django-rest-framework
Book Code
《Django开发从入门到实战》书籍各章节源代码
Stars: ✭ 28 (-59.42%)
Mutual labels:  django, django-rest-framework
Algo Phantoms Backend
💻 Algo-Phantoms-Backend is an Application that provides pathways and quizzes along with a code editor to help you towards your DSA journey.📰🔥 This repository contains the REST APIs of the application.✨
Stars: ✭ 36 (-47.83%)
Mutual labels:  django, django-rest-framework
Seven23 server
Fully manual budget app to track your expenses. Opensource, with privacy by design.
Stars: ✭ 20 (-71.01%)
Mutual labels:  django, django-rest-framework
Django Rest Pandas
📊📈 Serves up Pandas dataframes via the Django REST Framework for use in client-side (i.e. d3.js) visualizations and offline analysis (e.g. Excel)
Stars: ✭ 1,030 (+1392.75%)
Mutual labels:  django, django-rest-framework
Django Rest Framework Social Oauth2
python-social-auth and oauth2 support for django-rest-framework
Stars: ✭ 941 (+1263.77%)
Mutual labels:  django, django-rest-framework
Drf Tus
A Tus (tus.io) library for Django Rest Framework
Stars: ✭ 15 (-78.26%)
Mutual labels:  django, django-rest-framework
Django Channels React Multiplayer
turn based strategy game using django channels, redux, and react hooks
Stars: ✭ 52 (-24.64%)
Mutual labels:  django, django-rest-framework
Django Crm
A Simple Django CRM (Customer Relationship Management) RESTful API Project
Stars: ✭ 63 (-8.7%)
Mutual labels:  django, django-rest-framework

indrz open source indoor maps, routing and data API

Project homepage [www.indrz.com] (http://www.indrz.com)

If you want detailed instructions on how to build a demo indoor routing application check out this book (shameless self plug) Python Geospatial Analysis Cookbook The book source code is on Github https://github.com/mdiener21/python-geospatial-analysis-cookbook digital wayfinding indoors, maps, orientation and indoor routing for buildings large or small, app or webpage.

Sponsors

Browserstack is awesome and they provide the great service to test if everythings works in the wild browser world, check them out at https://www.browserstack.com

GitHub stars GitHub Issues GitHub release license Twitter

StackShare

Licence

indrz is under GNU General Public License v3.0. The name "indrz" is not allowed to be used by third parties and is a trademark. Other than that you can do what you want accordingly

Documentation

You can find our documentation project here [indrz Docs] (https://github.com/indrz/indrz-doc) in the folder content

Our documentation structure and build environment is built upon the [mapbox docbox] (https://github.com/mapbox/docbox) nodejs static documentation generator. The main content is found under the (content) folder.

[indrz Installation details] (https://github.com/indrz/indrz-doc/blob/master/content/installation.md)

[indrz introduction to API] (https://github.com/indrz/indrz-doc/blob/master/content/introduction.md)

[indrz Directions API] (https://github.com/indrz/indrz-doc/blob/master/content/directions.md)

[indrz Buildings API] (https://github.com/indrz/indrz-doc/blob/master/content/buildings.md)

indrz Working with GeoData

Quick start installation for developers

Create indrz Ubuntu system user

adduser indrz
usermod --home /opt/indrz -m indrz #-m moves files too
su indrz

if you get a python error on logging into the new user, run:

dpkg-reconfigure virtualenvwrapper

checkout indrz from github

cd ~
git clone https://github.com/indrz/indrz.git indrz
cd indrz
git checkout master

Create postgres user

sudo -u postgres createuser indrz # answer no, no, no
sudo -u postgres createdb indrz -O indrz

Create virtualenv with python 3.4

cd indrz
mkvirtualenv -p /usr/bin/python3.4 indrz

install the requirements using pip. If you have problems, make sure you have the right version of pip installed you may need to use pip3

pip install -r requirements/local.txt

load the demo campus, building, space data

python manage.py migrate --noinput
python manage.py loaddata initial_ltspacetype_data
python manage.py loaddata initial_poi_categories
python manage.py loaddata buildings

Configure your settings

cp settings/local.py.example settings/local.py
nano settings/local.py

Start indrz server locally with Django built in server

workon indrz
python manage.py runserver

Test if it is running

lynx http://localhost:8000/api/v1/ 

Building blocks Libraries we use

Supported and built by:

Contact: Michael Diener

Email: [email protected]

[www.gomogi.com] (http://www.gomogi.com)

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].