nvector icon indicating copy to clipboard operation
nvector copied to clipboard

Nvector is a suite of tools written in Python to solve geographical position calculations.

Results 7 nvector issues
Sort by recently updated
recently updated
newest added

Would appreciate install availability with conda-forge. It's a little more stable with a conda environment than pypi. Thanks.

As of 0.7.7, `Cartopy` is a required dependency of `nvector`. This is sometimes problematic since `Cartopy` does not provide ready-built wheels on pypi, thus requiring every user to have a...

The intersect method on `GeoPath` objects claims to return an instance of `GeoPoint`, which seems like the desired behavior (at least, that is what I want it to return too)....

Hi, I'm using this code for calculating the cartesian vector from "origin" to "target": ` wgs84 = nv.FrameE(name='WGS84') origin = wgs84.GeoPoint(latitude=latitudeOrigin, longitude=longitudeOrigin, z=altitudeOrigin, degrees=False) target = wgs84.GeoPoint(latitude=latitudeTarget, longitude=longitudeTarget, z=altitudeTarget, degrees=False)...

NumPy version 2 eliminated the deprecation function. See the below link. https://github.com/numpy/numpy/blob/c21ac104e544e24c88dbf625b6dccdbe7b90e39e/numpy/_expired_attrs_2_0.py#L61 The changes include: 1. A new util module function `deprecate` that recreates the core aspects of the numpy.deprecate...

the numpy 'deprecate' function was deprecated in numpy 2.0. nvector uses this funcition in nvector\util.py

# Add support for Python 3.13 and remove support for Python 3.9 This is a follow-up to Pull Request #23. Tests against Python 3.13 are _mostly_ passing now (see below)....