Skip to content

Instantly share code, notes, and snippets.

@hevilp
hevilp / code
Last active November 21, 2016 20:50
#!/bin/bash
{
COUNTER=0
LON=100
LAT=200
jo type=FeatureCollection features[]=$(
while [ $COUNTER -lt 10 ]; do
echo The counter is $COUNTER
let COUNTER=COUNTER+1
json=$(jo type=Feature geometry=$(jo type=Point coordinates[]=$LON coordinates[]=$LAT) properties=$(jo name="Test"))