Metadata-Version: 2.1
Name: django-rgd-3d
Version: 0.3.9
Summary: UNKNOWN
Home-page: https://github.com/ResonantGeoData/ResonantGeoData
Author: Kitware, Inc.
Author-email: rgd@kitware.com
License: Apache 2.0
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: django-rgd (==0.3.9)
Provides-Extra: worker
Requires-Dist: pyntcloud[las] ; extra == 'worker'
Requires-Dist: pyvista ; extra == 'worker'
Requires-Dist: pyproj ; extra == 'worker'

[![logo](https://raw.githubusercontent.com/ResonantGeoData/ResonantGeoData/main/logos/RGD_Logo.png)](https://github.com/ResonantGeoData/ResonantGeoData/)

# Resonant GeoData 3D

[![Kitware](https://img.shields.io/badge/Made%20by-Kitware-blue)](https://www.kitware.com/)
[![PyPI](https://img.shields.io/pypi/v/django-rgd-3d.svg?logo=python&logoColor=white)](https://pypi.org/project/django-rgd-3d/)

A subapplication of Resonant GeoData for storing 3D data with an optional
spatial reference.


## Installation

Follow the instructions for the core `django-rgd` app first, then

```
pip install --find-links https://girder.github.io/large_image_wheels django-rgd-3d
```

Add this app to your `INSTALLED_APPS` along with the core RGD app:

```py
INSTALLED_APPS += [
    'django.contrib.gis',
    'rgd',
    'rgd_3d',
]
```


## Models

This app adds a few additional models on top of the core app for storign 3D data

- `Mesh3D`: the base 3D data model for ingesting data. This will automatically convert many popular formats to the VTP format. A 3D viewer is included for previewing these data on the front-end.
- `Mesh3DSpatial`: A way to link a geospatial context with `Mesh3D`.


## Management Commands

- `rgd_3d_demo`: populate the database with example 3D data.


