Maxime

Results 69 comments of Maxime

Hi it is likely a version issue from the dependencies. Make sure you have the following: - AutomotivePOMDPs v0.2.1 - AutomotiveDrivingModels v0.7.12 - AutoViz v0.7.10 I will try to upload...

That would be a neat feature, instead of implementing `iterate` for `SpeedLimit` would it make sense to make it a `FieldVector` or a NamedTuple`?

The other option is to implement `iterate` which is not that big of a deal. I am pretty sure there must be some julia package with a macro that defines...

It is intended to work with any type, if it does not it is likely a bug. Can you provide a minimum example?

`Trajdata` lives in AutomotiveDrivingModels (look at the src code of v0.7.12 not master) https://github.com/sisl/AutomotiveDrivingModels.jl/blob/v0.7.12/src/states/trajdatas.jl#L5 You can see that it is an alias of the `ListRecord` object which is defined here:...

State1D is going to be deprecated we should drop support

It is a version issue, regressing AutomotiveSensors to v0.1.0 should work. I am leaving this issue open until I fix it in the Project.toml. Any help in upgrading to AutomotiveSimulators...

We have a visualization package that relies on Cairo: https://github.com/sisl/AutoViz.jl The main usage is through a render function, that accepts a `CairoSurface` as keyword argument (default to `CairoSVGSurface`). Now we...

Thanks for the tips, I will give a shot to a)!

this worked: ```julia typ = ccall((:cairo_surface_get_type, Cairo.libcairo), Cint, (Ptr{Nothing},), c.ptr) if typ == Cairo.CAIRO_SURFACE_TYPE_PDF # do stuff end ``` Thanks!