Marcus Jaschen

Results 33 comments of Marcus Jaschen

Hi, did you take a look at the [example script](https://github.com/iamstuartwilson/strava/blob/master/examples/oauth-flow.php)? Do you get that script working?

As this breaks backwards compatibility a new major release (2.0) would be required.

It's not backward compatible because it possibly breaks existing installations. Therefore it's a feature for the next major release (2.0).

You're right, but we cannot assume that the CA bundle is up to date everywhere. Enforcing certificate validation without shipping a current CA bundle will possibly break installations.

The Strava API documentation covers this: [List Athlete Activities (getLoggedInAthleteActivities)](https://developers.strava.com/docs/reference/#api-Activities-getLoggedInAthleteActivities): > Returns the activities of an athlete for a specific identifier. Requires activity:read. Only Me activities will be filtered out...

Seems to be fixed in the latest version: https://github.com/xfrocks/bdApi_WordPress/blob/master/xenforo-api-consumer/includes/widget/search.php Is it possible that you're using a very old version of the `xenforo-api-consumer` code? (Context: `create_function()` was deprecated with PHP 7.2...

Added a test for this issue: https://github.com/mjaschen/phpgeo/compare/master...fix/96 @nilshoerrmann It seems that there's a bug when checking for line intersection for some edge cases – do you have an idea for...

Hi, that'd be a nice addition. The referenced algorithms are for planar polygons only. We have to find something that works on the surface of an ellipsoid. Lets see if...

Hi, that's currently not possible and I think that's out of scope for this library. For the time being you've to split the location data from other meta, simplify locations...

Extending the geometry classes (`Coordinate`, `Polyline`, etc.) is currently not possible. That would required the extensive use of interfaces instead of concrete classes in many places. I'd like to see...