Tuesday, June 21, 2011

RCOS Presentation

On Friday I gave a presentation to RCOS about Flagship Safety.  I gave an overview of what we're trying to accomplish, and outlined some of the things I want to do over the next two months  You can find the presentation bellow.

Sunday, June 12, 2011

RCOS Timeline

We're entering week four of the Summer session here at RPI, and I realize I should probably schedule out  the tings I want to do.  I've spent the first three weeks working on improving the display of emergency poles, and I can now display multiple layers on one main map.

Monday, June 6, 2011

Rails Console (or not)

Between testing my CSV import function and testing layer views,  I've imported the call boxes spreadsheet about a dozen times.  So I decided to use the rails console to clear my <code>call_box</code> and <code>import_tables</code models and re-import things.  Since the rails guides don't say much about the console, I had to look elsewhere.  After ten minutes of nor finding an answer, I decided that I could just rebuild my app without too much fuss.  So I deleted my app and checked-out my repo again.

Sunday, May 29, 2011

RCOS

I've decided to continue work on Flagship Safety over the summer by turning it into an RCOS project.  RCOS is the Rensselaer Center for Open Source Software.  They support the development of open source projects and contributions to open source projects.  It has been around since 2007 and in the summer it meets weekly from 12-1 in Lally 104.

Friday, April 29, 2011

returning data efficiently

Like any good web framework, you can use the JSON format to send data to your application. The JSON data I was building in my layers controller was returning a 500 error, which was because the :include parameter is expecting attributes from multiple models, and fails if it doesn't find them. Once I removed :include, the JSON flowed freely.

Wednesday, April 20, 2011

Sanity (the data's, that is)

This having been GM Week here at RPI, I wasn't able to do much on my project.  I did work a little bit on sanitizing the data that I'm inputing, mostly the crime alert information, but also the emergency pole data.  I found tool, http://choonchernlim.com/kmlcsv/, thats written in Java and, that seems handy in converting KML to CSV files, and vice versa.  I say seems because while I've been able to convert CSV files to KML, the tool was unable to process the KML file I tried to give it.

Thursday, April 7, 2011

Data, Part 2

The other information that I want to display on my map is the crime alerts that come from Public Safety.  A start on this is the work my friend Brian and I did with some other members of the Web Tech Group, when FFA wanted to analyse the locations of crime alerts.  Now that Flagship Geo has been created, I'd like to include this information in my map, as a separate layer.