Monthly Archives: May 2015

Phil 5/29/15

8:00 – 4:00 SR

  • Was going to deploy chart tests but Bill got stuck doing other things.
  • Add base and reflections to chart
  • Reflections are done and working. Had to add reflectivity back in. Also, don’t forget that reflections require a cubemap.
  • Actually had to add the UV components for the plane by hand. Huh. Pretty progress for the day though…

shiny

Phil 5.28/15

8:00 – 4:30 SR

  • Tried to deploy chart test, but we were missing some library files. Will try again tomorrow.
  • Ronda’s back, got her started on certs for the new server
  • More 3D charting.

3dbarChart

  • Need to make tooltips more informative, and place on a textured plane. Also, need to get reflections working again.

Phil 5.27.15

8:00 – 4:00

  • Servers are now current.
  • John P. Is having some problems with the FR tool. Printing the email.
  • Deleting all references to the evil callbacks.
  • Found a bug in the rendering code that would attempt to clear highlights of objects that weren’t there.
  • Added some static default messages to ATSMessanger. Using this post for best practices.

Phil 5.25.15

8:00 – 4:30 SR

  • Still working on updating the servers.
  • Need to do self-assessment today – done.
  • Added message passing to support queries. Much nicer. Deleting the crazy callback code.
  • Messaging works for the canvas as well. Going to keep but deprecate the callback.

Dong Shin 05.20.2015

  • deployed new FR
  • modified project_names table with new data
  • Lenny’s request
    • increase WIDTH of SELECT
    • add optional field for Project Lab PM to behave like Project Lab – When Other is selected show manual entry.
  • added cg-busy to charting-data
  • back to the charting app….

Dong Shin 05.18.2015

  • going through FR
  • added scope.$watch() function in currencyInput directive  to catch values set outside – automatic 100%
  • must initialize the validators to true as multiple false validators show up

Phil 5.15.15

7:30 – 4:00 SR

  • Backups
  • Tried ‘compress’, which seemed to compress the files in-place. It did not put them in a zip file. Going to try gnu utilities next.
  • Lenny says all the funds are dispersed in CONUS. Need a globe and planar charting. Basically the difference should be AZ/EL vs X/Y
  • Migrating the generic chart data classes/interfaces to WebGlChartData
  • had to cast an array index from string to <any>. Don’t know why:
    export class ChartInfo extends NovettaUtils.ATSBase{
       public cSeries:CartesianSeries[];
    
       constructor() {
          this.cSeries = [];
       }
    
    
       public addSeries  (key:string, source:WglChartData.IChartDataElement):void {
          var cs:CartesianSeries = new CartesianSeries(key, source);
          cs.mapData(this.minVec, this.maxVec);
          this.cSeries[<any>key] = cs; // <----------- why??????
       }
    }
  • Added a dataprovider and dataformat to WGLA_controller2 and started passing data into Wgl3dCharts. Individual elements with their mappings are coming across correctly. Next comes the actual mapping.