Skip to main content

An OGC SensorThings API implementation in Python.

Project description

SensorAtlas

SensorAtlas is a Django App that serves an OGC SensorThings API implementation in Python.

Detailed documentation is in the "docs" directory.

Quick start

The following steps will explain how to add Sensor Atlas to an existing django application. If you do not have a django application, create one and install Sensor Atlas to get started.

NOTE: Sensor Atlas requires that django uses a PostGIS backend for its Database Settings.

  1. Install sensorAtlas (e.g. pip install <path-to-file>/sensorAtlas-0.1.tar.gz)

  2. Add "sensorAtlas" to your INSTALLED_APPS setting like this (note rest_framework must be included in INSTALLED_APPS):

INSTALLED_APPS = [
    ...
    'rest_framework,
    'sensorAtlas',
]
  1. Also include the following Django Rest Framework settings in your settings.py file:
REST_FRAMEWORK = {
    'DEFAULT_VERSIONING_CLASS': 'rest_framework.versioning.URLPathVersioning',
    'URL_FIELD_NAME': 'selfLink',
    'ORDERING_PARAM': '$orderby',
    'DEFAULT_PAGINATION_CLASS': 'sensorAtlas.pagination.SensorThingsPagination',
    'PAGE_SIZE': 100,
    'TEST_REQUEST_DEFAULT_FORMAT': 'json'
}
  1. Include the sensorAtlas URLconf in your project urls.py urlpatterns like this::
urlpatterns = [
    ...
    path('api/', include('sensorAtlas.urls')),
]
  1. Run python manage.py makemigrations sensorAtlas && python manage.py migrate to create the sensorAtlas models.

  2. Start the development server with python manage.py runserver and visit http://127.0.0.1:8000/api/v1.0/

Tests

python setup.py test

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sensorAtlas-0.1.tar.gz (76.1 kB view details)

Uploaded Source

File details

Details for the file sensorAtlas-0.1.tar.gz.

File metadata

  • Download URL: sensorAtlas-0.1.tar.gz
  • Upload date:
  • Size: 76.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for sensorAtlas-0.1.tar.gz
Algorithm Hash digest
SHA256 a3d44ecb829425c93b101b441664fab35722e1b0c986dc6e6a327cc4bcf85712
MD5 6d1c545b229c6228271bf8f624c631dd
BLAKE2b-256 d1e5491d47d15ba265dc54953e8ef9d8ec9230f6f744972a5da705a9474af173

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page