Skip to main content

Minimalist GeoBases implementation:

  • no dependencies

  • compatible with Python 3.11+, CPython and PyPy

  • one data source: opentraveldata

  • one Python module for easier distribution on clusters (like Hadoop)

  • faster load time (5x)

  • tested with pytest and tox

  • passes static typing checks with ty

>>> from neobase import NeoBase
>>> b = NeoBase()
>>> b.get('ORY', 'city_code_list')
['PAR']
>>> b.get('ORY', 'city_name_list')
['Paris']
>>> b.get('ORY', 'country_code')
'FR'
>>> b.distance('ORY', 'CDG')
34.87...
>>> b.get_location('ORY')
LatLng(lat=48.72..., lng=2.35...)

Installation

Use the Python package:

pip install neobase

Docs

Check out readthedocs for the API.

You can customize the source data when initializing:

with open("file.csv") as f:
    N = NeoBase(f)

Otherwise the loaded file will be the embedded one, unless the OPTD_POR_FILE environment variable is set. In that case, it will load from the path defined in that variable.

You can manually retrieve the latest data source yourself too, but you expose yourself to some breaking changes if they occur in the data.

from io import StringIO
from urllib.request import urlopen

from neobase import NeoBase, OPTD_POR_URL

data = urlopen(OPTD_POR_URL).read().decode('utf8')
N = NeoBase(StringIO(data))
N.get("PAR")

The reference date of validity can be changed as well:

N = NeoBase(date="2000-01-01")
N.get("AIY")  # was decommissioned in 2015

By default, the reference date will be set to today, unless the OPTD_POR_DATE environment variable is set. In that case, it will use that value.

You can customize the behavior regarding duplicates: points sharing the same IATA code, like NCE as airport and NCE as city. By default everything is kept, but you can set it so that only the first point with an IATA code is kept:

N = NeoBase(duplicates=False)
len(N)  # about 10,000 "only"

Note that you can use the OPTD_POR_DUPLICATES environment variable to control this as well: set it to 0 to drop duplicates.

Finally, you can customize fields loaded by subclassing.

class SubNeoBase(NeoBase):
    KEY = 0  # iata_code

    # Those loaded fields are the default ones
    FIELDS = (
        ("name", 6, None),
        ("lat", 8, None),
        ("lng", 9, None),
        ("page_rank", 12, lambda s: float(s) if s else None),
        ("country_code", 16, None),
        ("country_name", 18, None),
        ('continent_name', 19, None),
        ("timezone", 31, None),
        ("city_code_list", 36, lambda s: s.split(",")),
        ('city_name_list', 37, lambda s: s.split('=')),
        ('location_type', 41, None),
        ("currency", 46, None),
    )

N = SubNeoBase()

Command-line interface

You can query the data using:

python -m neobase PAR NCE

Tests

tox

A note about performance

The geographical operations like N.find_near("ORY", 100) or N.find_closest_from("ORY") perform a full scan of the data, and are not optimized (remember that this library has no dependencies, by design).

If you want a more efficient solution, you should use a spatial index like a BallTree, for example using scikit-learn:

import numpy as np
from sklearn.neighbors import BallTree
from neobase import NeoBase

N = NeoBase()

iata_codes = []
coords = []
for key in N:
    lat, lon = N.get_location(key)
    if lat is not None and lon is not None:
        iata_codes.append(N.get(key, "iata_code"))
        coords.append([np.radians(lat), np.radians(lon)])
coords = np.array(coords)

tree = BallTree(coords, metric="haversine")

def find_closest_with_balltree(coord):
    point = np.radians(coord)
    _, idx = tree.query([point], k=1)
    iata_code = iata_codes[idx[0][0]]
    return iata_code

paris = (48.8566, 2.3522)
print(find_closest_with_balltree(paris))  # <0.1ms
print(list(N.find_closest_from_location(paris)))  # ~30ms

Download files

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

Source Distribution

neobase-0.36.2.tar.gz (4.2 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

neobase-0.36.2-py3-none-any.whl (4.2 MB view details)

Uploaded Python 3

File details

Details for the file neobase-0.36.2.tar.gz.

File metadata

  • Download URL: neobase-0.36.2.tar.gz
  • Upload date:
  • Size: 4.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for neobase-0.36.2.tar.gz
Algorithm Hash digest
SHA256 123d0e4584342f320121f6917e8c57597568b51296f911289b3e5a9214579a36
MD5 71c7e03c998bca64573cff72569e5663
BLAKE2b-256 0c99090491eb3b8a1aeea8d910a1526ddc5f95cb1b666ef3015d5eebcc0868b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for neobase-0.36.2.tar.gz:

Publisher: python-package.yml on alexprengere/neobase

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neobase-0.36.2-py3-none-any.whl.

File metadata

  • Download URL: neobase-0.36.2-py3-none-any.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for neobase-0.36.2-py3-none-any.whl
Algorithm Hash digest
SHA256 46e04bb650dfb4cd588c144111fd92157f8dccf1462572599881473760583f3c
MD5 466faa3d143fa62909e2f20e08a2eb06
BLAKE2b-256 ce120a8420af2c2104e131183154ed418cf32102f3bcf90e1843d77fb3f4866d

See more details on using hashes here.

Provenance

The following attestation bundles were made for neobase-0.36.2-py3-none-any.whl:

Publisher: python-package.yml on alexprengere/neobase

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.37

2 files

0.36.4

2 files

0.36.3

2 files

This release

0.36.2 This release

2 files

0.36.1

2 files

0.36

2 files

0.35.1

2 files

0.35

2 files

0.34.28

2 files

0.34.27

2 files

0.34.26

2 files

0.34.25

2 files

0.34.24

2 files

0.34.23

2 files

0.34.22

2 files

0.34.21

2 files

0.34.20

2 files

0.34.19

2 files

0.34.18

2 files

0.34.17

2 files

0.34.16

2 files

0.34.15

2 files

0.34.14

2 files

0.34.13

2 files

0.34.12

2 files

0.34.11

2 files

0.34.10

2 files

0.34.9

2 files

0.34.8

2 files

0.34.7

2 files

0.34.6

2 files

0.34.5

2 files

0.34.4

2 files

0.34.3

2 files

0.34.2

2 files

0.34.1

2 files

0.34

2 files

0.33.23

2 files

0.33.22

2 files

0.33.21

2 files

0.33.20

2 files

0.33.19

2 files

0.33.18

2 files

0.33.17

2 files

0.33.16

2 files

0.33.15

2 files

0.33.14

2 files

0.33.13

2 files

0.33.12

2 files

0.33.11

2 files

0.33.10

2 files

0.33.9

2 files

0.33.8

2 files

0.33.7

2 files

0.33.6

2 files

0.33.5

2 files

0.33.4

2 files

0.33.3

2 files

0.33.2

2 files

0.33.1

2 files

0.33

2 files

0.32.5

2 files

0.32.4

2 files

0.32.3

2 files

0.32.2

2 files

0.32.1

2 files

0.32

2 files

0.31.6

2 files

0.31.5

2 files

0.31.4

2 files

0.31.3

2 files

0.31.2

2 files

0.31.1

2 files

0.31

2 files

0.30.8

2 files

0.30.7

2 files

0.30.6

2 files

0.30.5

2 files

0.30.4

2 files

0.30.3

2 files

0.30.2

2 files

0.30.1

2 files

0.30

2 files

0.29.6

2 files

0.29.5

2 files

0.29.4

2 files

0.29.3

2 files

0.29.2

2 files

0.29.1

2 files

0.29

2 files

0.28

2 files

0.27.4

2 files

0.27.3

2 files

0.27.2

2 files

0.27.1

2 files

0.27

2 files

0.26.2

2 files

0.26.1

2 files

0.26

2 files

0.25.2

2 files

0.25.1

2 files

0.25

2 files

0.24

2 files

0.23

2 files

0.22

2 files

0.21.2

1 file

0.21.1

1 file

0.21

1 file

0.20.6

1 file

0.20.5

1 file

0.20.4

1 file

0.20.3

1 file

0.20.2

1 file

0.20.1

1 file

0.20

1 file

0.19.1

1 file

0.19

1 file

0.18.4

1 file

0.18.3

1 file

0.18.2

1 file

0.18.1

1 file

0.18

1 file

0.17.4

1 file

0.17.3

1 file

0.17.2

1 file

0.17.1

1 file

0.17

1 file

0.16.1

1 file

0.16

1 file

0.15

1 file

0.14

1 file

0.13

1 file

0.12

1 file

0.11

1 file

0.10

1 file

0.9

1 file

0.8

1 file

0.7

1 file

0.6

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page