Skip to content

Instantly share code, notes, and snippets.

View goelakash's full-sized avatar
🔥
Work mode

Akash Goel goelakash

🔥
Work mode
View GitHub Profile

Start date - 23rd may

#Week 1

  • Convert .script files to json

#Week 2

  • Add JSON compilation support.

#Week 3 & 4

The current list of objectives includes:

  • Update .script to .json files
  • Update code for Python2/3 compatibility
  • add CLI options for creating a metadata .json file for a new dataset, and edit old ones.
@goelakash
goelakash / GSoC-2016.md
Last active February 24, 2016 20:28 — forked from iCHAIT/GSoC-2016.md

1. 52°North Initiative for Geospatial Open Source Software GmbH (Applying)

  • No. of proj accepted - 6

  • difficulty level/Desc - Difficult (GeoInformation stuff)

  • tags - geo , geospatial , java , gis , spatiotemporal , geoprocessing , traffic , environment , R , R-project , earth observation , geoprocessing , spatial data , geostatistics , sensor web , search , mobile , eventing , database

  • ideas - SPARQL endpoint and InterOperability for EnviroCar data Social Driving Stats

@goelakash
goelakash / tokenize.cpp
Created January 23, 2016 16:32
Tokenize string (C++)
vector<string> tokenize(string str)
{
vector<string> vec;
string word;
istringstream iss(str, istringstream::in);
while( iss >> word )
{
vec.push_back(word);
}
return vec;