Skip to content

Instantly share code, notes, and snippets.

View tilaktilak's full-sized avatar

pierre.tilak tilaktilak

View GitHub Profile
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🍼 Bébé Surprise</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
min-height: 100vh;
@tilaktilak
tilaktilak / DTM_GEOTIFF_GDAL.cpp
Last active September 24, 2019 04:13
open a geotiff dtm with gdal
// Compile with g++ geotiff2.cpp -std=c++11 -lgdal && ./a.out
#include "cpl_conv.h" // for CPLMalloc()
#include "gdal_priv.h"
#include <iostream>
typedef struct {
double lon;
double lat;
} coord;