This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use 'forma.hadoop.jobs.scatter) | |
;; put stuff in pail | |
(let [pail-path "/Users/robin/delete/tmp/newpail" | |
vcf-src [(thrift/DataChunk* "vcf" | |
(thrift/ModisPixelLocation* "500" 28 8 0 0) | |
25 | |
"00")] | |
gadm-src [(thrift/DataChunk* "gadm" | |
(thrift/ModisPixelLocation* "500" 28 8 0 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(import '[java.util UUID]) | |
(defn uuid-stream [] | |
(repeatedly #(str (UUID/randomUUID)))) | |
(defn domain-map [root-path n] | |
(let [name-seq (take n (uuid-stream))] | |
(->> (map (partial str root-path "/") name-seq) | |
(interleave name-seq) | |
(apply hash-map)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"item":{ | |
"source":"World Wildlife Fund (WWF)", | |
"type":"Ecoregion", | |
"name":"Admiralty Island lowland rain forests", | |
"description":"", | |
"storage":{ | |
"location":"G:/MoL/....", | |
"format":"esri-shape" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class OccurrencePolygonSet(db.Model): | |
# Normal properties... | |
class Ecoregion(db.Model): | |
cluster = db.ReferenceProperty(OccurrencePolygonSet) | |
terms = db.StringListProperty() | |
# Other properties here... | |
# Find all ecoregions for a cluster where the ecoregion is introduced and g200Num is 2: | |
cluster = OccurrencePolygonSet.get(some_key) |