Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ AIS data comprises digital messages that ships and shore stations broadcast to r

The build requires the following.

- Python 3.10 or newer
- Python 3.8 or newer
- Rust toolchain via rustup
- PostgreSQL with the TimescaleDB and PostGIS extensions

Expand Down Expand Up @@ -93,7 +93,7 @@ Continuous integration builds wheels for Linux, macOS, and Windows and runs the

## Documentation

[docs](https://aisviz.gitbook.io/documentation/) · [tutorials](https://aisviz.gitbook.io/tutorials/) · [API reference](https://aisviz.cs.dal.ca/AISdb/) · [website](https://aisviz.cs.dal.ca/)
[docs](https://aisviz.gitbook.io/documentation/) · [tutorials](https://aisviz.gitbook.io/tutorials/) · [API reference](https://maps-lab.github.io/AISdb-lite/) · [website](https://aisviz.cs.dal.ca/)

## Related projects

Expand Down
1 change: 1 addition & 0 deletions aisdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"ShoreDist": "aisdb.webdata.shore_dist",
"PortDist": "aisdb.webdata.shore_dist",
"CoastDist": "aisdb.webdata.shore_dist",
"InlandDenoising": "aisdb.denoising_encoder",
"graph": "aisdb.network_graph",
"WeatherDataStore": "aisdb.weather.data_store",
"Discretizer": "aisdb.discretize.h3",
Expand Down
21 changes: 8 additions & 13 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,21 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import importlib.metadata
from datetime import datetime

# import aisdb
try:
_version = importlib.metadata.version("aisdb")
except importlib.metadata.PackageNotFoundError:
_version = "0.0.0+unknown"

# -- Project information -----------------------------------------------------

project = "AISDB"
copyright = f"{datetime.today().year}, MAPS Lab"
author = "AISViz"
author = "MAPS Lab"
version = ".".join(_version.split(".")[:2])
release = _version

# -- General configuration ---------------------------------------------------

Expand Down Expand Up @@ -59,14 +65,3 @@
html_css_files = [
#'custom.css',
]
"""
def skip(app, what, name, obj, would_skip, options):
if "fromFunction" in name:
return True
else:
return would_skip


def setup(app):
app.connect("autodoc-skip-member", skip)
"""
1 change: 0 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ AISDB Docs: Index

api/aisdb
api/aisdb.*
api/modules

Indices and tables
==================
Expand Down
Loading