cleder / czml

Read and write CZML in Python
90 stars 27 forks source link

how to add a description element? #23

Open rsignell-usgs opened 8 years ago

rsignell-usgs commented 8 years ago

I'm writing a script to convert bird migration data in CSV files to CZML. It's working well so far, but I'd like to add a description element as per this suggestion from Kevin Ring: https://github.com/TerriaJS/terriajs/issues/1275#issuecomment-188597516

When I try to add this to my script here: https://gist.github.com/rsignell-usgs/d0b1fd95f79204a50814#file-bird2czml-py-L110 I get no errors, but the output CZML file doesn't contain the description.

I looked at the code and it seems like there is some description stuff in there: https://github.com/cleder/czml/blob/master/czml/test_main.py#L1015-L1017 but I couldn't figure out how to use it.

Is the description element actually implemented? If so, how do I use it?

rsignell-usgs commented 8 years ago

Here's a more clear example that demonstrates what I tried, but doesn't work: https://gist.github.com/rsignell-usgs/1ba00682610dd63a8bd5 (screen grab here): 2016-02-26_17-18-18

This is frustrating because it looks like there is a test here that demonstrates this working: https://github.com/cleder/czml/blob/master/czml/test_main.py#L1039-L1046

What am I doing wrong?