Stefano Borghi

Results 46 comments of Stefano Borghi

FYI it works for me on Safari 15.5

Same here: ### Versions - ide-helper Version: 2.8.1 - Laravel Version: 6.18.40 - PHP Version: 7.4 ```php // app/Providers/CarbonServiceProvider.php use Illuminate\Support\Carbon; use Illuminate\Support\ServiceProvider; class CarbonServiceProvider extends ServiceProvider { ... public...

Yeah, it would be great. Any update on this? I guess it could be done by simply passing like an additional `data-i18n-parameter` attribute. Is it complicated to be implemented?

@dragosct10 no the issue is the warning message not showing: ![Screen Shot 2020-08-20 at 8 20 57 AM](https://user-images.githubusercontent.com/12717225/90791584-3a6b5e00-e2be-11ea-9239-f02d17fce996.png) and this the error you get, only on Chrome, if you have...

@bulutkartal I wanted to work on this issue, but we recently decided to go for the next [major release](https://github.com/Turfjs/turf/issues/962) (`v5.0`) which will take few weeks. I'll probably spend all my...

I think this should be shown in the docs

@mkorpela indeed a bug. However it looks like the issue is related to the decimals of your coordinates: ```js const u = turf.union(turf.truncate(p1), turf.truncate(p2)) console.log(JSON.stringify(u)) // {"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.062444,18.596802],[-73.054078,18.559575],[-73.024499,18.427748],[-73.008564,18.508849],[-72.992607,18.590015],[-73.062444,18.596802]]],[[[-73.048498,19.747137],[-73.017618,19.691036],[-73.03139,19.750748],[-73.048498,19.747137]]],[[[-72.653649,20.124248],[-72.653196,20.122267],[-72.64762,20.123415],[-72.653649,20.124248]]],[[[-72.551084,17.974866],[-72.457103,17.972276],[-72.463205,17.999399],[-72.507543,18.195904],[-72.516579,18.150057],[-72.543707,18.01234],[-72.551084,17.974866]]],[[[-71.826784,20.010058],[-71.807452,19.913124],[-71.789212,20.004869],[-71.826784,20.010058]]],[[[-71.66191,19.182076],[-71.656205,19.153361],[-71.657409,19.204588],[-71.66191,19.182076]]]]}} ```

@btisdall have you tried truncating the features? ```js turf.difference( turf.truncate(feature1), turf.truncate(feature2) ) ```

Hey @ubaltaci looks like you're right. Strange enough a simple test like this is actually missing in the package. Thanks for the heads-up.

@jingsam could you please provide some more details on the issue? Could you please provide some data and a code snippet that replicate the issue so we can take test...