Jose A. J. Berni

Results 10 comments of Jose A. J. Berni

I am trying to decode sensor_msgs/PointCloud2 messages without much success. The data is encoded pretty much like an image, but it is necessary to decode the PointField[] fields to determine...

I came across the same issue and the poor CPU performance on a Jetson TX2. What I noticed is that the root process "ksoftirqd/0" is using a core on its...

I found out that the intensive CPU issue was due to the small packet size (1476 bytes by default). Increasing it to 8192 decreased dramatically the CPU usage (about 7%...

That's right; I didn't realize the template comes from Frontiers. It only happens on certain occasions, which I haven't deciphered yet, but it is quite annoying. I have avoided it...

It looks like the template is a bit outdated. https://github.com/frontiersin/latex-manuscript-templates/tree/master/Frontiers_LaTex_Templates In any case, I am unsure if this is the root of the problem.

I have forked the repo and updated the templates to match the template and example from Frontiers: b9bb1e0ab421c25faeae95407b9651c8839b790f Knitting the same RMarkdown with this version seems to fix my problem:...

> > I have forked the repo and updated the templates to match the template and example from Frontiers: > > So you are saying that the template in **rticles**...

I think this is will be awesome and will allow most users to avoid using an RS232 split cable to inject RTCM correction to the Ellipse-N/D units (as we currently...

Let me have a look into it. I have been using open-meteo for other projects and I think it's a great choice for HAsmartirrigation as it provides ETo calculations for...

Sure! Here is my code to get the geojson from the API ``` python api_endpoint = settings.API_BASE_URL + f'/fields/{field_id}/geojson' headers = {'Authorization': f'Bearer {access_token}'} response = requests.get(api_endpoint, headers=headers) if response.status_code...