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
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ representative at an online or offline event.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at aisviz@dal.ca.
reported to the community leaders responsible for enforcement at mapslab@dal.ca.
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 2023-2026 AISViz, Dalhousie University
Copyright (C) 2023-2026 MAPS Lab, Dalhousie University

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AISdb-lite

A lightweight version of [AISdb](https://github.com/AISViz/AISdb) featuring advanced spatio-temporal capabilities with PostGIS and TimescaleDB (TigerData). Where the full AISdb shards AIS messages into per-month tables, AISdb-lite ingests everything into two global tables backed by TimescaleDB hypertables with PostGIS geometry.
A lightweight version of [AISdb](https://github.com/MAPS-Lab/AISdb) featuring advanced spatio-temporal capabilities with PostGIS and TimescaleDB (TigerData). Where the full AISdb shards AIS messages into per-month tables, AISdb-lite ingests everything into two global tables backed by TimescaleDB hypertables with PostGIS geometry.

## What it does

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

## Related projects

- [AISdb](https://github.com/AISViz/AISdb) is the canonical general-purpose package on [PyPI](https://pypi.org/project/aisdb/); this repository tracks the `vishvesh/dev` lineage of AISViz/AISdb
- [NOAA-Integrator](https://github.com/AISViz/NOAA-Integrator) acquires AIS data from NOAA Marine Cadastre and loads it into AISdb-aligned databases
- [Tutorials](https://github.com/AISViz/Tutorials) collects notebooks with worked examples for AISdb workflows
- [AISdb](https://github.com/MAPS-Lab/AISdb) is the canonical general-purpose package on [PyPI](https://pypi.org/project/aisdb/); this repository tracks the `vishvesh/dev` lineage of AISViz/AISdb
- [NOAA-Integrator](https://github.com/MAPS-Lab/AISdb-NOAA-Integrator) acquires AIS data from NOAA Marine Cadastre and loads it into AISdb-aligned databases
- [Tutorials](https://github.com/MAPS-Lab/AISdb-Tutorials) collects notebooks with worked examples for AISdb workflows

## License

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The AISdb team takes security vulnerabilities seriously. If you discover a secur

### How to Report a Security Vulnerability:

- **Email:** Send an email to aisviz@dal.ca. Please include a detailed description of the issue, including the steps to reproduce the vulnerability. If possible, include patches, scripts, or other resources that could help evaluate the vulnerability.
- **Email:** Send an email to mapslab@dal.ca. Please include a detailed description of the issue, including the steps to reproduce the vulnerability. If possible, include patches, scripts, or other resources that could help evaluate the vulnerability.
- **GitHub Issue:** For vulnerabilities that do not immediately impact the security of the project or its users (such as potential optimizations or best practices), consider opening a GitHub issue on our repository.

### Response Expectations:
Expand Down
2 changes: 1 addition & 1 deletion aisdb/denoising_encoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def update_dict_(tr_):


class InlandDenoising:
data_url = "https://github.com/AISViz/AISdb/releases/download/data-v1/geo_land_water_NorthAmerica.7z"
data_url = "https://github.com/MAPS-Lab/AISdb/releases/download/data-v1/geo_land_water_NorthAmerica.7z"

def __init__(self, data_dir, land_cache="land.pkl", water_cache="water.pkl"):
# deferred import: pulls the raster-download stack (requests/py7zr)
Expand Down
4 changes: 2 additions & 2 deletions aisdb/webdata/bathymetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

# GEBCO 2022 grid split into two archives to fit release asset limits
urls = (
"https://github.com/AISViz/AISdb/releases/download/data-v1/raster-bathy-1.7z",
"https://github.com/AISViz/AISdb/releases/download/data-v1/raster-bathy-2.7z",
"https://github.com/MAPS-Lab/AISdb/releases/download/data-v1/raster-bathy-1.7z",
"https://github.com/MAPS-Lab/AISdb/releases/download/data-v1/raster-bathy-2.7z",
)


Expand Down
6 changes: 3 additions & 3 deletions aisdb/webdata/shore_dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def download_unzip(data_url, data_dir, bytesize=0, timeout=(10, 30)):
class ShoreDist(RasterFile):
# This is self-stored data to easy the deployment process
data_url = (
"https://github.com/AISViz/AISdb/releases/download/data-v1/raster-shore.7z"
"https://github.com/MAPS-Lab/AISdb/releases/download/data-v1/raster-shore.7z"
)

def __init__(self, data_dir, tif_filename="distance-from-shore.tif"):
Expand Down Expand Up @@ -149,7 +149,7 @@ def get_distance(self, tracks):
class PortDist(RasterFile):
# This is self-stored data to ease the deployment process
data_url = (
"https://github.com/AISViz/AISdb/releases/download/data-v1/raster-ports.7z"
"https://github.com/MAPS-Lab/AISdb/releases/download/data-v1/raster-ports.7z"
)

def __init__(self, data_dir, tif_filename="distance-from-port-v20201104.tiff"):
Expand Down Expand Up @@ -188,7 +188,7 @@ def get_distance(self, tracks):
class CoastDist(RasterFile):
# This is self-stored data to ease the deployment process
data_url = (
"https://github.com/AISViz/AISdb/releases/download/data-v1/raster-coast.7z"
"https://github.com/MAPS-Lab/AISdb/releases/download/data-v1/raster-coast.7z"
)

def __init__(
Expand Down
4 changes: 2 additions & 2 deletions aisdb_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
version = "1.8.0-alpha"
name = "aisdb-lib"
authors = [ "AISViz Maintainers // aisviz@dal.ca",]
authors = [ "AISViz Maintainers // mapslab@dal.ca",]
edition = "2021"
include = [ "../aisdb/aisdb_sql", "/src/*",]
build = "build.rs"
readme = "../README.md"
description = "AIS Database and Processing Utils"
homepage = "https://aisviz.cs.dal.ca/"
repository = "https://github.com/AISViz/AISdb-lite"
repository = "https://github.com/MAPS-Lab/AISdb-lite"
tutorials = "https://aisviz.gitbook.io/tutorials/"
documentation = "https://aisviz.gitbook.io/documentation/"
license-file = "LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion aisdb_lib/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 2023-2026 AISViz, Dalhousie University
Copyright (C) 2023-2026 MAPS Lab, Dalhousie University

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# -- Project information -----------------------------------------------------

project = "AISDB"
copyright = f"{datetime.today().year}, AISViz"
copyright = f"{datetime.today().year}, MAPS Lab"
author = "AISViz"
Comment on lines +20 to 21

# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ classifiers = [
]

[[project.authors]]
email = "aisviz@dal.ca"
email = "mapslab@dal.ca"
name = "AISViz Maintainers"
Comment on lines +27 to 28

[project.license]
file = "LICENSE"

[project.urls]
homepage = "https://aisviz.cs.dal.ca/"
repository = "https://github.com/AISViz/AISdb-lite"
repository = "https://github.com/MAPS-Lab/AISdb-lite"
tutorials = "https://aisviz.gitbook.io/tutorials/"
documentation = "https://aisviz.gitbook.io/documentation/"

Expand Down
4 changes: 2 additions & 2 deletions receiver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
name = "aisdb-receiver"
version = "1.8.0-alpha"
edition = "2021"
authors = [ "AISViz Maintainers // aisviz@dal.ca", ]
authors = [ "AISViz Maintainers // mapslab@dal.ca", ]
readme = "../README.md"
description = "AISDB Receiver"
homepage = "https://aisviz.cs.dal.ca/"
repository = "https://github.com/AISViz/AISdb-lite"
repository = "https://github.com/MAPS-Lab/AISdb-lite"
tutorials = "https://aisviz.gitbook.io/tutorials/"
documentation = "https://aisviz.gitbook.io/documentation/"
license-file = "LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion receiver/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 2023-2026 AISViz, Dalhousie University
Copyright (C) 2023-2026 MAPS Lab, Dalhousie University

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
Expand Down
Loading