itinero / routing

The routing core of itinero.
Apache License 2.0
221 stars 69 forks source link

Is it possible to serialize a Itinero.Profiles.Profile? #160

Closed hhornburg closed 6 years ago

hhornburg commented 6 years ago

I'd like to serialize an Itinero.Profiles.Profile, but this seems not to be possible. Is there any simple way to do this, or do I have to code some workaround for my project?

xivk commented 6 years ago

You can serialize a vehicle only if it's a lua profile (and then it's just a string with the original lua-code), otherwise you have to include and build your vehicle code into whatever app is loading the routerdb.

hhornburg commented 6 years ago

Thanks!