Thanks for the answer, but I have one problem to do that. I'm following the D3 cesium example and I have a function to load the data and another to update the data with the time:
HealthAndWealthDataSource.prototype.load = function(data) {
if (!Cesium.defined(data)) {
throw new Cesium.DeveloperError("data must be defined.");
}
var ellipsoid = viewer.scene.globe.ellipsoid;
this._setLoading(true);
var entities = this._entityCollection;
//It's a good idea to suspend events when making changes to a
//large amount of entities. This will cause events to be batched up
//into the minimal amount of function calls and all take place at the
//end of processing (when resumeEvents is called).
entities.suspendEvents();
entities.removeAll();
// for each station defined in stations_geo.json, create a polyline at that lat, lon
for (var i = 0; i < data.length; i++){
var station = data[i];
var surfacePosition = Cesium.Cartesian3.fromDegrees(station.lon, station.lat, 0.0);
// Construct Population related Properties
var radiation1 = new Cesium.SampledPositionProperty();
var sampledRadiation = new Cesium.SampledProperty(Number);
var colorPolyline = new Cesium.SampledProperty(Number);
var heightPosition = Cesium.Cartesian3.fromDegrees(station.lon, station.lat, station.radio[0][1]*1000000);
radiation1.addSample(Cesium.JulianDate.fromIso8601("2015"), heightPosition);
sampledRadiation.addSample(Cesium.JulianDate.fromIso8601("2015"), radio);
var radio = 0.0;
for (var j = 0; j < station.radio.length; j++) {
var year = station.radio[j][0];
radio = station.radio[j][1];
heightPosition = Cesium.Cartesian3.fromDegrees(station.lon, station.lat, radio*1000000);
radiation1.addSample(Cesium.JulianDate.fromIso8601(year), heightPosition);
sampledRadiation.addSample(Cesium.JulianDate.fromIso8601(year), radio);
colorPolyline.addSample(Cesium.JulianDate.fromIso8601(year), Cesium.Color.fromCssColorString(this._colorScale(radio)));
}
radiation1.addSample(Cesium.JulianDate.fromIso8601("2015"), heightPosition);
sampledRadiation.addSample(Cesium.JulianDate.fromIso8601("2015"), radio);
var polyline = new Cesium.PolylineGraphics();
polyline.show = new Cesium.ConstantProperty(true);
outlineMaterial.color = colorPolyline.getValue(Cesium.JulianDate.fromIso8601(year))
outlineMaterial.outlineColor = new Cesium.ConstantProperty(new Cesium.Color(0.0, 0.0, 0.0, 1.0));
outlineMaterial.outlineWidth = new Cesium.ConstantProperty(3.0);
polyline.material = outlineMaterial;
var entity = new Cesium.Entity(station.name);
entity.polyline = polyline;
polyline.positions = new Cesium.PositionPropertyArray([new Cesium.ConstantPositionProperty(surfacePosition), radiation1]);
// Add data properties to entity
entity.addProperty('surfacePosition');
entity.surfacePosition = surfacePosition;
entity.addProperty('stationData');
entity.stationData = station;
entity.addProperty('radio');
entity.radio = sampledRadiation;
//Add the entity to the collection.
entities.add(entity);
}
//Once all data is processed, call resumeEvents and raise the changed event.
entities.resumeEvents();
this._changed.raiseEvent(this);
this._setLoading(false);
};
In this function I don't have the time, but in the update function yes:
HealthAndWealthDataSource.prototype.update = function(time) {
//El tiempo en cesium siempre es el juliano, que es el que hemos predefinido como inicial en la variable _year
if (time !== this._year ){
this._setInfoDialog(time);
}
return true;
};
How can I change the values with the time? Because following this code I only get the correct color for the last time.