mrJean1

Results 79 comments of mrJean1

_All_ `LatLon` classes require a `lat` and `lon` value as the first 2 arguments. Additional arguments may be different but are optional and have reasonable default values. Ellipsoidal intersections are...

One, arbitrary example. The intersection of `(lat1=0, lon1=0, bearing1=30)` and `(lat2=0, lon2=0.000269, bearing2=-30)` -with 0.000269 being about 30 m- from the ellipsoidal, spherical and Vector3d function is the same `(lat=0.00023296083361801397,...

Use `lon` for `x` and `lat` for `y`, like the new function `intersection2` does it internally. Get the `.whl` or `.zip` file from [here](https://github.com/mrJean1/PyGeodesy/tree/master/dist) to try `intersection2` since 23.4.11 is...

All `lat-`, `longitudes` and `bearing` in `pygeodesy` are in degrees (`modulo 360`). Angles named `phi` and `lam` (lambda) are `lat-` and `longitudes` in `radians` (`modulo PI2`). Distance, elevation, height, length,...

PyGeodesy [23.4.12](https://pypi.org/project/PyGeodesy/23.4.12/) is available on [PyPI](https://pypi.org/project/PyGeodesy/) and [GitHub](https://github.com/mrJean1/PyGeodesy). The new function [intersection2](https://mrjean1.github.io/PyGeodesy/docs/pygeodesy.formy-module.html#intersection2) offers 5 different choices to compute an intersection, selected with the `datum` keyword argument. Use new keyword argument...

The video is not shown because there is no call to `player.set_nsobject(obj)` or `player.set_xwindow(obj)` to specify the window to display the video. Take a look in the `examples` folder. The...

Correct, older versions of VLC on macOS (or MacOS) did open a window. However, recent VLC releases no longer do and make a call to `player.set_nsobject(obj)` or `player.set_xwindows(obj)` necessary. It...

What are the python-vlc, VLC and macOS versions? Try ``` python vlc.py -v ``` Can't duplicate any of those messages with Python 3.7.6, `tkvlc.py` 20.12.10, `python-vlc` 3.0.1218, `VLC` 3.0.16 on...

The [tkvlc.py 20.05.04](https://github.com/oaubert/python-vlc/blob/master/examples/tkvlc.py) from the `python-vlc/examples` folder works with `Python 3.10.0` and `3.9.6` [(both macOS 64-bit universal2)](https://www.python.org/downloads/release/python-3100/) natively on `amd64 Apple-Silicon` and with `Python 3.8.10` and `3.7.6` (both macOS 64-bit...

The line after ``` python3 tkvlc.py -v ``` should look something like ``` tkvlc.py: 20.05.04 (tkinter 8.6 /Library/Frameworks/Python.framework/Versions/3.10/lib/libtk8.6.dylib) ``` and not ``` tkvlc.py: 20.05.04 (tkinter 8.6 N/A) ``` meaning the...