Commit 7fd9bc33 authored by Pelayo Torres's avatar Pelayo Torres
Browse files

REL 19 New Open Discover Service API

parent 33bcce76
Loading
Loading
Loading
Loading
Loading
+72 −0
Original line number Original line Diff line number Diff line
.travis.yaml
.openapi-generator-ignore
README.md
tox.ini
git_push.sh
test-requirements.txt
setup.py

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/
venv/
.python-version

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

#Ipython Notebook
.ipynb_checkpoints
+66 −0
Original line number Original line Diff line number Diff line
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/
venv/
.venv/
.python-version
.pytest_cache

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

#Ipython Notebook
.ipynb_checkpoints
+23 −0
Original line number Original line Diff line number Diff line
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
+58 −0
Original line number Original line Diff line number Diff line
.dockerignore
.gitignore
.openapi-generator-ignore
.travis.yml
Dockerfile
README.md
git_push.sh
openapi_server/__init__.py
openapi_server/__main__.py
openapi_server/controllers/__init__.py
openapi_server/controllers/default_controller.py
openapi_server/controllers/security_controller.py
openapi_server/encoder.py
openapi_server/models/__init__.py
openapi_server/models/aef_location.py
openapi_server/models/api_status.py
openapi_server/models/base_model.py
openapi_server/models/civic_address.py
openapi_server/models/communication_type.py
openapi_server/models/custom_operation.py
openapi_server/models/data_format.py
openapi_server/models/ellipsoid_arc.py
openapi_server/models/gad_shape.py
openapi_server/models/geographic_area.py
openapi_server/models/geographical_coordinates.py
openapi_server/models/invalid_param.py
openapi_server/models/local2d_point_uncertainty_ellipse.py
openapi_server/models/local3d_point_uncertainty_ellipsoid.py
openapi_server/models/local_origin.py
openapi_server/models/open_aef_profile.py
openapi_server/models/open_api_details.py
openapi_server/models/open_discovery_resp.py
openapi_server/models/operation.py
openapi_server/models/point.py
openapi_server/models/point_altitude.py
openapi_server/models/point_altitude_uncertainty.py
openapi_server/models/point_uncertainty_circle.py
openapi_server/models/point_uncertainty_ellipse.py
openapi_server/models/polygon.py
openapi_server/models/problem_details.py
openapi_server/models/protocol.py
openapi_server/models/relative_cartesian_location.py
openapi_server/models/res_oper_info.py
openapi_server/models/resource.py
openapi_server/models/service_kpis.py
openapi_server/models/supported_gad_shapes.py
openapi_server/models/uncertainty_ellipse.py
openapi_server/models/uncertainty_ellipsoid.py
openapi_server/models/version.py
openapi_server/openapi/openapi.yaml
openapi_server/test/__init__.py
openapi_server/test/test_default_controller.py
openapi_server/typing_utils.py
openapi_server/util.py
requirements.txt
setup.py
test-requirements.txt
tox.ini
+1 −0
Original line number Original line Diff line number Diff line
7.11.0
Loading