nobodo
nobodo
The id must be in hex I think. This should work (sorry for posting it already in the other discussion): amp_models = { 0x0001: 'id-tvp', 0x0010: 'id-core', 0x0011: 'id-coreV2', 0x0020:...
Hello. I think you could try to add the id to the blackstar.py, where amp_models are defined. I added one for my V2 and got this thing running. Try modifying...
Hi, there are many ways to have this, but not sure what is the best approach. One idea was to have a placeholder in the filename on the mapfile, like:...
The problem with single log file is that the log entries are sometimes interleaved even within one line of text. That was the original reason why I started to investigate...
This seems to be the culprit for the interleaving, in mapio.c ``` if( context == NULL ) return_val = fwrite(outbuf , 1, return_val, fp ); ``` it will write 1...
Maybe I just misunderstood the C specification: "The fwrite function writes, from the array pointed to by ptr, up to nmemb elements whose size is specified by size, to the...
Any idea how that line-offset could be implemented?
I tried the following (main points briefly): In case 'line-offset' is defined for 'line' type layer, get the original coordinates with feature.getGeometry().getFlatCoordinates() and store them to offsetCoordinates with the calculated...
Ok, thanks, I'll try to fix the style usage. Btw, for some reason I was not able to clone the geometry with the .clone() function which is available in openlayers...
I was not able to use the clone either on geometry or feature. Also, to my understanding the translate is usable only for straight lines. For lines that consists of...