Skip to content

Instantly share code, notes, and snippets.

View rmarianski's full-sized avatar

Robert Marianski rmarianski

View GitHub Profile
@rmarianski
rmarianski / anonstruct.c
Created December 29, 2014 15:41
Embed structures in c
#include <stdio.h>
typedef struct point {
int x, y;
} point;
typedef struct point3d {
struct point;
int z;
} point3d;
#!/bin/bash
export PGPASSWORD=password
PGOPTS="-d database -h host -U user"
# water polygons
#
wget http://data.openstreetmapdata.com/water-polygons-split-3857.zip
unzip water-polygons-split-3857.zip
shp2pgsql -dID -s 900913 -W Windows-1252 -g the_geom water-polygons-split-3857/water_polygons.shp water_polygons | psql $PGOPTS
rm ./water-polygons-split-3857.zip && rm -rf ./water-polygons-split-3857