- Download rasters in BSB format
-
Unzip it
unzip <FILE>.ZIP
-
Convert to GeoTIFF format.
barracuda | |
bigfish | |
bordeaux | |
bullwinkle | |
casanova | |
cherrystone | |
colusa | |
constantine | |
crusader | |
deepmind |
static inline void | |
swap(char *s, size_t i, size_t j) | |
{ | |
char tmp = s[i]; | |
s[i] = s[j]; | |
s[j] = tmp; | |
} | |
void |
package lpcwstr | |
// #include <windows.h> | |
// #include <wchar.h> | |
// #include <WinNT.h> | |
import "C" | |
import ( | |
"unicode/utf16" | |
"unsafe" |
#!/usr/bin/env python | |
import git | |
import ipdb | |
import time | |
import enum | |
import datetime | |
import dateparser | |
import random | |
import json |
Unzip it
unzip <FILE>.ZIP
Convert to GeoTIFF format.
module ol.geom { | |
export class Circle extends ol.geom.SimpleGeometry { | |
/** | |
* Circle geometry. | |
* | |
* @param center Center. | |
* @param opt_radius Radius. |
[4mRunning "jshint:all" (jshint) task[24m | |
[32m>> [39m2 files lint free. | |
[4mRunning "jshint:test" (jshint) task[24m | |
[32m>> [39m1 file lint free. | |
[4mRunning "karma:travis" (karma) task[24m | |
[32m31 03 2016 12:47:52.770:INFO [karma]: [39mKarma v0.13.22 server started at http://localhost:9876/ | |
[32m31 03 2016 12:47:52.774:INFO [launcher]: [39mStarting browser PhantomJS | |
[32m31 03 2016 12:47:52.931:INFO [PhantomJS 1.9.8 (Linux 0.0.0)]: [39mConnected on socket /#AEYWnSHFzNeIR-7RAAAA with id 56687022 |
function marshaller(clazz, options) { | |
let empty = function () { return {}; }; | |
let encode = options.encode || empty; | |
let decode = options.decode || empty; | |
clazz.prototype.toJSON = function () { | |
return Object.assign({}, this, encode(this)); | |
}; |
So you have a User
type in your code.
interface User {
name: string;
age: number;
created: Date;
}
#include <stdlib.h> | |
#include <assert.h> | |
#include <stdio.h> | |
typedef struct { | |
size_t size; | |
size_t *data; | |
size_t *weights; | |
} UnionFind; |