-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.clj
More file actions
28 lines (28 loc) · 1.49 KB
/
Copy pathproject.clj
File metadata and controls
28 lines (28 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(defproject clj-span/clj-span "1.1.0"
:description
"clj-span - SPAN models for Ecosystem Service Assessment
Copyright 2009-2013 Gary W. Johnson (gjohnson@green-compass.org)
----------------------------------------------------------------------
This application provides a suite of spatial models that simulate the
flow of ecosystem services from the landscapes which provide them to
the people who receive them in a region determined by the user's input
maps. This implementation is based on the paper 'Service Path
Attribution Networks (SPANs): Spatially Quantifying the Flow of
Ecosystem Services from Landscapes to People' (Springer LNCS 2010 -
Johnson et al.)
----------------------------------------------------------------------"
:license {:name "GNU General Public License v3",
:url "http://www.gnu.org/licenses/gpl.html"}
:url "https://github.com/lambdatronic/clj-span"
;; :url "http://lambdatronic.github.com/clj-span" <-- codox-generated API
:dependencies [[org.clojure/clojure "1.6.0"]
;; [meridian/clj-jts "0.0.1"]
[integratedmodelling/thinklab-api "1.0.0"]
[net.mikera/core.matrix "0.22.0"]
[net.mikera/vectorz-clj "0.21.0"]]
:min-lein-version "2.0.0"
:global-vars {*warn-on-reflection* true}
:aot [clj-span.commandline clj-span.java-span-bridge]
:main clj-span.commandline
:resource-paths [] ;; exclude resources/ from my jars and uberjars
:repositories [["thinklab" "http://integratedmodelling.org/sw/lib"]])