Giter Site home page Giter Site logo

prioritizr's Introduction

Systematic Conservation Prioritization in R

lifecycle Travis Build Status AppVeyor Build Status Coverage Status CRAN_Status_Badge

The prioritizr R package uses integer linear programming (ILP) techniques to provide a flexible interface for building and solving conservation planning problems. It supports a broad range of objectives, constraints, and penalties that can be used to custom-tailor conservation planning problems to the specific needs of a conservation planning exercise. Once built, conservation planning problems can be solved using a variety of commercial and open-source exact algorithm solvers. In contrast to the algorithms conventionally used to solve conservation problems, such as heuristics or simulated annealing, the exact algorithms used here are guaranteed to find optimal solutions. Furthermore, conservation problems can be constructed to optimize the spatial allocation of different management actions or zones, meaning that conservation practitioners can identify solutions that benefit multiple stakeholders. Finally, this package has the functionality to read input data formatted for the Marxan conservation planning program, and find much cheaper solutions in a much shorter period of time than Marxan.

Installation

The latest official version of the prioritizr R package can be installed using the following R code.

install.packages("prioritizr", repos = "https://cran.rstudio.com/")

Alternatively, the latest development version can be installed using the following code. Please note that while developmental versions may contain additional features not present in the official version, they may also contain coding errors.

if (!require(devtools))
  install.packages("devtools")
devtools::install_github("prioritizr/prioritizr")

Citation

Please use the following citation to cite the prioritizr R package in publications:

Hanson JO, Schuster R, Morrell N, Strimas-Mackey M, Watts ME, Arcese P, Bennett J, Possingham HP (2019). prioritizr: Systematic Conservation Prioritization in R. R package version 4.1.4.3. Available at https://github.com/prioritizr/prioritizr.

Additionally, we keep a record of publications that use the prioritizr R package. If you use this package in any reports or publications, please file an issue on GitHub so we can add it to the record.

Usage

Here we will provide a short example showing how the prioritizr R package can be used to build and solve conservation problems. For brevity, we will use one of the built-in simulated data sets that is distributed with the package. First, we will load the prioritizr R package.

# load package
library(prioritizr)

We will use the sim_pu_polygons object to represent our planning units. Although the prioritizr R can support many different types of planning unit data, here our planning units are represented as polygons in a spatial vector format (i.e. SpatialPolygonsDataFrame). Each polygon represents a different planning unit and we have 90 planning units in total. The attribute table associated with this data set contains information describing the acquisition cost of each planning ("cost" column), and a value indicating if the unit is already located in protected area ("locked_in" column). Let's explore the planning unit data.

# load planning unit data
data(sim_pu_polygons)

# show the first 6 rows in the attribute table
head(sim_pu_polygons@data)
##       cost locked_in locked_out
## 1 215.8638     FALSE      FALSE
## 2 212.7823     FALSE      FALSE
## 3 207.4962     FALSE      FALSE
## 4 208.9322     FALSE       TRUE
## 5 214.0419     FALSE      FALSE
## 6 213.7636     FALSE      FALSE
# plot the planning units and color them according to acquisition cost
spplot(sim_pu_polygons, "cost", main = "Planning unit cost",
       xlim = c(-0.1, 1.1), ylim = c(-0.1, 1.1))

# plot the planning units and show which planning units are inside protected
# areas (colored in yellow)
spplot(sim_pu_polygons, "locked_in", main = "Planning units in protected areas",
       xlim = c(-0.1, 1.1), ylim = c(-0.1, 1.1))

Conservation features are represented using a stack of raster data (i.e. RasterStack objects). A RasterStack represents a collection of RasterLayers with the same spatial properties (i.e. spatial extent, coordinate system, dimensionality, and resolution). Each RasterLayer in the stack describes the distribution of a conservation feature.

In our example, the sim_features object is a RasterStack object that contains 5 layers. Each RasterLayer describes the distribution of a species. Specifically, the pixel values denote the proportion of suitable habitat across different areas inside the study area. For a given layer, pixels with a value of one are comprised entirely of suitable habitat for the feature, and pixels with a value of zero contain no suitable habitat.

# load feature data
data(sim_features)

# plot the distribution of suitable habitat for each feature
plot(sim_features, main = paste("Feature", seq_len(nlayers(sim_features))),
     nr = 2)

Let's say that we want to develop a reserve network that will secure 15% of the distribution for each feature in the study area for minimal cost. In this planning scenario, we can either purchase all of the land inside a given planning unit, or none of the land inside a given planning unit. Thus we will create a new problem that will use a minimum set objective (add_min_set_objective), with relative targets of 15% (add_relative_targets), binary decisions (add_binary_decisions), and specify that we want to want optimal solutions from the best solver installed on our system (add_default_solver).

# create problem
p1 <- problem(sim_pu_polygons, features = sim_features,
              cost_column = "cost") %>%
      add_min_set_objective() %>%
      add_relative_targets(0.15) %>%
      add_binary_decisions() %>%
      add_default_solver(gap = 0)

After we have built a problem, we can solve it to obtain a solution. Since we have not specified the method used to solve the problem, prioritizr will automatically use the best solver currently installed. It is strongly encouraged to install the Gurobi software suite and the gurobi R package to solve problems quickly, for more information on this please refer to the Gurobi Installation Guide

# solve the problem
s1 <- solve(p1)
## Optimize a model with 5 rows, 90 columns and 450 nonzeros
## Variable types: 0 continuous, 90 integer (90 binary)
## Coefficient statistics:
##   Matrix range     [2e-01, 9e-01]
##   Objective range  [2e+02, 2e+02]
##   Bounds range     [1e+00, 1e+00]
##   RHS range        [4e+00, 1e+01]
## Found heuristic solution: objective 3139.8880309
## Presolve time: 0.00s
## Presolved: 5 rows, 90 columns, 450 nonzeros
## Variable types: 0 continuous, 90 integer (90 binary)
## Presolved: 5 rows, 90 columns, 450 nonzeros
## 
## 
## Root relaxation: objective 2.611170e+03, 13 iterations, 0.00 seconds
## 
##     Nodes    |    Current Node    |     Objective Bounds      |     Work
##  Expl Unexpl |  Obj  Depth IntInf | Incumbent    BestBd   Gap | It/Node Time
## 
##      0     0 2611.17006    0    4 3139.88803 2611.17006  16.8%     -    0s
## H    0     0                    2770.9863254 2611.17006  5.77%     -    0s
## H    0     0                    2763.6685938 2611.17006  5.52%     -    0s
##      0     0 2611.74321    0    5 2763.66859 2611.74321  5.50%     -    0s
## H    0     0                    2757.1834439 2611.74321  5.27%     -    0s
##      0     0 2611.83195    0    6 2757.18344 2611.83195  5.27%     -    0s
##      0     0 2611.88195    0    7 2757.18344 2611.88195  5.27%     -    0s
##      0     0 2611.94509    0    7 2757.18344 2611.94509  5.27%     -    0s
##      0     0 2611.95916    0    8 2757.18344 2611.95916  5.27%     -    0s
##      0     0 2612.11731    0    9 2757.18344 2612.11731  5.26%     -    0s
##      0     0 2612.15193    0    9 2757.18344 2612.15193  5.26%     -    0s
##      0     0 2612.32632    0    9 2757.18344 2612.32632  5.25%     -    0s
##      0     0 2612.36536    0   10 2757.18344 2612.36536  5.25%     -    0s
##      0     0 2612.43206    0   10 2757.18344 2612.43206  5.25%     -    0s
##      0     0 2612.45076    0   10 2757.18344 2612.45076  5.25%     -    0s
##      0     0 2612.51779    0    9 2757.18344 2612.51779  5.25%     -    0s
##      0     2 2612.67761    0    9 2757.18344 2612.67761  5.24%     -    0s
## H10326  6090                    2747.3774616 2619.58181  4.65%   1.7    1s
##  85181 49419 2636.64100   90    1 2747.37746 2622.05197  4.56%   1.6    5s
## H173128  8666                    2627.6389306 2623.36502  0.16%   1.6   10s
## 
## Cutting planes:
##   Gomory: 2
##   MIR: 7
##   Flow cover: 2
## 
## Explored 189518 nodes (316635 simplex iterations) in 11.81 seconds
## Thread count was 1 (of 4 available processors)
## 
## Solution count 6: 2627.64 2747.38 2757.18 ... 3139.89
## 
## Optimal solution found (tolerance 0.00e+00)
## Best objective 2.627638930618e+03, best bound 2.627638930618e+03, gap 0.0000%
# extract the objective (cost of solution in this case)
print(attr(s1, "objective"))
## solution_1 
##   2627.639
# extract time spent solving the problem
print(attr(s1, "runtime"))
## solution_1 
##   11.81477
# extract state message from the solver
print(attr(s1, "status"))
## solution_1 
##  "OPTIMAL"
# plot the solution
spplot(s1, "solution_1", main = "Solution", at = c(0, 0.5, 1.1),
       col.regions = c("grey90", "darkgreen"), xlim = c(-0.1, 1.1),
       ylim = c(-0.1, 1.1))

Although this solution adequately conserves each feature, it is inefficient because it does not consider the fact some of the planning units are already inside protected areas. Since our planning unit data contains information on which planning units are already inside protected areas (in the "locked_in" column of the attribute table), we can add constraints to ensure they are prioritized in the solution (add_locked_in_constraints).

# create new problem with locked in constraints added to it
p2 <- p1 %>%
      add_locked_in_constraints("locked_in")

# solve the problem
s2 <- solve(p2)
## Optimize a model with 5 rows, 90 columns and 450 nonzeros
## Variable types: 0 continuous, 90 integer (90 binary)
## Coefficient statistics:
##   Matrix range     [2e-01, 9e-01]
##   Objective range  [2e+02, 2e+02]
##   Bounds range     [1e+00, 1e+00]
##   RHS range        [4e+00, 1e+01]
## Found heuristic solution: objective 3027.6970854
## Presolve removed 0 rows and 10 columns
## Presolve time: 0.00s
## Presolved: 5 rows, 80 columns, 400 nonzeros
## Variable types: 0 continuous, 80 integer (80 binary)
## Presolved: 5 rows, 80 columns, 400 nonzeros
## 
## 
## Root relaxation: objective 2.754438e+03, 12 iterations, 0.00 seconds
## 
##     Nodes    |    Current Node    |     Objective Bounds      |     Work
##  Expl Unexpl |  Obj  Depth IntInf | Incumbent    BestBd   Gap | It/Node Time
## 
##      0     0 2754.43796    0    4 3027.69709 2754.43796  9.03%     -    0s
## H    0     0                    2839.1208991 2754.43796  2.98%     -    0s
##      0     0 2754.44157    0    5 2839.12090 2754.44157  2.98%     -    0s
##      0     0 2835.61695    0    3 2839.12090 2835.61695  0.12%     -    0s
##      0     0 2835.66921    0    3 2839.12090 2835.66921  0.12%     -    0s
##      0     0 2835.66921    0    3 2839.12090 2835.66921  0.12%     -    0s
##      0     0 2835.66921    0    3 2839.12090 2835.66921  0.12%     -    0s
##      0     0 2836.21899    0    4 2839.12090 2836.21899  0.10%     -    0s
##      0     0 2836.33448    0    5 2839.12090 2836.33448  0.10%     -    0s
##      0     0 2836.49814    0    5 2839.12090 2836.49814  0.09%     -    0s
##      0     0 2836.77716    0    6 2839.12090 2836.77716  0.08%     -    0s
##      0     0 2836.82966    0    7 2839.12090 2836.82966  0.08%     -    0s
##      0     0 2836.87897    0    7 2839.12090 2836.87897  0.08%     -    0s
##      0     0 2836.88941    0    7 2839.12090 2836.88941  0.08%     -    0s
##      0     0 2836.89055    0    8 2839.12090 2836.89055  0.08%     -    0s
##      0     0 2836.95465    0    8 2839.12090 2836.95465  0.08%     -    0s
##      0     0 2836.95837    0    8 2839.12090 2836.95837  0.08%     -    0s
##      0     0 2837.22974    0    8 2839.12090 2837.22974  0.07%     -    0s
##      0     0 2837.24568    0    7 2839.12090 2837.24568  0.07%     -    0s
##      0     0 2837.31532    0    9 2839.12090 2837.31532  0.06%     -    0s
##      0     0 2837.36017    0   10 2839.12090 2837.36017  0.06%     -    0s
##      0     0 2837.38138    0    8 2839.12090 2837.38138  0.06%     -    0s
##      0     0 2837.39696    0   11 2839.12090 2837.39696  0.06%     -    0s
##      0     0 2837.40036    0   12 2839.12090 2837.40036  0.06%     -    0s
##      0     0 2837.47861    0    9 2839.12090 2837.47861  0.06%     -    0s
## H    0     0                    2838.2640999 2837.47861  0.03%     -    0s
##      0     0 2837.59896    0    9 2838.26410 2837.59896  0.02%     -    0s
##      0     0 2837.64565    0    9 2838.26410 2837.64565  0.02%     -    0s
##      0     0 2837.66216    0    9 2838.26410 2837.66216  0.02%     -    0s
##      0     0 2837.66722    0   10 2838.26410 2837.66722  0.02%     -    0s
##      0     0 2837.67791    0   10 2838.26410 2837.67791  0.02%     -    0s
##      0     0 2837.91263    0    5 2838.26410 2837.91263  0.01%     -    0s
##      0     0 infeasible    0      2838.26410 2838.26410  0.00%     -    0s
## 
## Cutting planes:
##   MIR: 4
##   StrongCG: 1
## 
## Explored 1 nodes (82 simplex iterations) in 0.02 seconds
## Thread count was 1 (of 4 available processors)
## 
## Solution count 3: 2838.26 2839.12 3027.7 
## 
## Optimal solution found (tolerance 0.00e+00)
## Best objective 2.838264099909e+03, best bound 2.838264099909e+03, gap 0.0000%
# plot the solution
spplot(s2, "solution_1", main = "Solution", at = c(0, 0.5, 1.1),
       col.regions = c("grey90", "darkgreen"), xlim = c(-0.1, 1.1),
       ylim = c(-0.1, 1.1))

This solution is an improvement over the previous solution. However, it is also highly fragmented. As a consequence, this solution may be associated with increased management costs and the species in this scenario may not benefit substantially from this solution due to edge effects. We can further modify the problem by adding penalties that punish overly fragmented solutions (add_boundary_penalties). Here we will use a penalty factor of 300 (i.e. boundary length modifier; BLM), and an edge factor of 50% so that planning units that occur outer edge of the study area are not overly penalized.

# create new problem with boundary penalties added to it
p3 <- p2 %>%
      add_boundary_penalties(penalty = 300, edge_factor = 0.5)

# solve the problem
s3 <- solve(p3)
## Optimize a model with 293 rows, 234 columns and 1026 nonzeros
## Variable types: 0 continuous, 234 integer (234 binary)
## Coefficient statistics:
##   Matrix range     [2e-01, 1e+00]
##   Objective range  [6e+01, 3e+02]
##   Bounds range     [1e+00, 1e+00]
##   RHS range        [4e+00, 1e+01]
## Found heuristic solution: objective 19567.196992
## Found heuristic solution: objective 4347.6970854
## Presolve removed 72 rows and 46 columns
## Presolve time: 0.00s
## Presolved: 221 rows, 188 columns, 832 nonzeros
## Variable types: 0 continuous, 188 integer (188 binary)
## Presolved: 221 rows, 188 columns, 832 nonzeros
## 
## 
## Root relaxation: objective 3.862929e+03, 120 iterations, 0.00 seconds
## 
##     Nodes    |    Current Node    |     Objective Bounds      |     Work
##  Expl Unexpl |  Obj  Depth IntInf | Incumbent    BestBd   Gap | It/Node Time
## 
##      0     0 3862.92934    0   65 4347.69709 3862.92934  11.1%     -    0s
## H    0     0                    3963.8685826 3862.92934  2.55%     -    0s
## H    0     0                    3951.7528370 3862.92934  2.25%     -    0s
##      0     0 3885.08664    0   65 3951.75284 3885.08664  1.69%     -    0s
## H    0     0                    3948.5328261 3885.08664  1.61%     -    0s
##      0     0 3889.41281    0   41 3948.53283 3889.41281  1.50%     -    0s
##      0     0 3895.26772    0   67 3948.53283 3895.26772  1.35%     -    0s
##      0     0 3895.26772    0   33 3948.53283 3895.26772  1.35%     -    0s
## H    0     0                    3946.8920000 3895.26772  1.31%     -    0s
##      0     0 3895.26772    0   23 3946.89200 3895.26772  1.31%     -    0s
##      0     0 3895.26772    0   34 3946.89200 3895.26772  1.31%     -    0s
##      0     0 3900.67120    0   33 3946.89200 3900.67120  1.17%     -    0s
##      0     0 3900.93350    0   28 3946.89200 3900.93350  1.16%     -    0s
##      0     0 3912.18222    0   24 3946.89200 3912.18222  0.88%     -    0s
##      0     0 3912.18222    0   23 3946.89200 3912.18222  0.88%     -    0s
## H    0     0                    3939.6015361 3912.18222  0.70%     -    0s
##      0     0 3912.18222    0    9 3939.60154 3912.18222  0.70%     -    0s
##      0     0 3920.23973    0   10 3939.60154 3920.23973  0.49%     -    0s
##      0     0 3921.61905    0   10 3939.60154 3921.61905  0.46%     -    0s
##      0     0 3922.01353    0   10 3939.60154 3922.01353  0.45%     -    0s
##      0     0 3922.15375    0   10 3939.60154 3922.15375  0.44%     -    0s
##      0     0 3926.58057    0   11 3939.60154 3926.58057  0.33%     -    0s
##      0     0 3931.06911    0    6 3939.60154 3931.06911  0.22%     -    0s
##      0     0 3931.06911    0    6 3939.60154 3931.06911  0.22%     -    0s
## 
## Cutting planes:
##   Gomory: 1
##   MIR: 1
## 
## Explored 1 nodes (301 simplex iterations) in 0.12 seconds
## Thread count was 1 (of 4 available processors)
## 
## Solution count 7: 3939.6 3946.89 3948.53 ... 19567.2
## 
## Optimal solution found (tolerance 0.00e+00)
## Best objective 3.939601536145e+03, best bound 3.939601536145e+03, gap 0.0000%
# plot the solution
spplot(s3, "solution_1", main = "Solution", at = c(0, 0.5, 1.1),
       col.regions = c("grey90", "darkgreen"), xlim = c(-0.1, 1.1),
       ylim = c(-0.1, 1.1))

This solution is even better then the previous solution. However, we are not finished yet. This solution does not maintain connectivity between reserves, and so species may have limited capacity to disperse throughout the solution. To avoid this, we can add contiguity constraints (add_contiguity_constraints).

# create new problem with contiguity constraints
p4 <- p3 %>%
      add_contiguity_constraints()

# solve the problem
s4 <- solve(p4)
## Optimize a model with 654 rows, 506 columns and 2292 nonzeros
## Variable types: 0 continuous, 506 integer (506 binary)
## Coefficient statistics:
##   Matrix range     [2e-01, 1e+00]
##   Objective range  [6e+01, 3e+02]
##   Bounds range     [1e+00, 1e+00]
##   RHS range        [1e+00, 1e+01]
## Presolve removed 340 rows and 252 columns
## Presolve time: 0.02s
## Presolved: 314 rows, 254 columns, 702 nonzeros
## Variable types: 0 continuous, 254 integer (254 binary)
## Found heuristic solution: objective 7270.1195351
## Found heuristic solution: objective 6070.2074533
## Presolved: 314 rows, 254 columns, 702 nonzeros
## 
## 
## Root relaxation: objective 5.489159e+03, 69 iterations, 0.00 seconds
## 
##     Nodes    |    Current Node    |     Objective Bounds      |     Work
##  Expl Unexpl |  Obj  Depth IntInf | Incumbent    BestBd   Gap | It/Node Time
## 
##      0     0 5489.15943    0   59 6070.20745 5489.15943  9.57%     -    0s
## H    0     0                    5859.8468810 5489.15943  6.33%     -    0s
## H    0     0                    5858.4184908 5489.15943  6.30%     -    0s
##      0     0 5697.13650    0   46 5858.41849 5697.13650  2.75%     -    0s
##      0     0 5697.13650    0   49 5858.41849 5697.13650  2.75%     -    0s
##      0     0 5711.59091    0   35 5858.41849 5711.59091  2.51%     -    0s
##      0     0 5731.33260    0   39 5858.41849 5731.33260  2.17%     -    0s
##      0     0 5731.37109    0   40 5858.41849 5731.37109  2.17%     -    0s
## *    0     0               0    5858.4183883 5858.41839  0.00%     -    0s
## 
## Cutting planes:
##   Gomory: 5
##   Zero half: 6
## 
## Explored 1 nodes (259 simplex iterations) in 0.06 seconds
## Thread count was 1 (of 4 available processors)
## 
## Solution count 5: 5858.42 5858.42 5859.85 ... 7270.12
## No other solutions better than 5858.42
## 
## Optimal solution found (tolerance 0.00e+00)
## Best objective 5.858418387501e+03, best bound 5.858418387501e+03, gap 0.0000%
# plot the solution
spplot(s4, "solution_1", main = "Solution", at = c(0, 0.5, 1.1),
       col.regions = c("grey90", "darkgreen"), xlim = c(-0.1, 1.1),
       ylim = c(-0.1, 1.1))

Now let's explore which planning units selected in the prioritization are most important for meeting our targets as cost-effectively as possible. To achieve this, we will calculate irreplaceability scores using the replacement cost method. Under this method, planning units with higher scores are more irreplaceable than those with lower scores. Furthermore, planning units with infinite scores are critical---it is impossible to meet our targets without protecting these planning units. Note that we override the solver behavior in the code below to prevent lots of unnecessary text from being output.

# solve the problem
rc <- p4 %>%
      add_default_solver(gap = 0, verbose = FALSE) %>%
      replacement_cost(s4[, "solution_1"])
## Warning in res(x, ...): overwriting previously defined solver
# set infinite values as 1.09 so we can plot them
rc$rc[rc$rc > 100] <- 1.09

# plot the irreplaceability scores
# planning units that are replaceable are shown in purple, blue, green, and
# yellow, and planning units that are truly irreplaceable are shown in red
spplot(rc, "rc", main = "Irreplaceability", xlim = c(-0.1, 1.1),
       ylim = c(-0.1, 1.1), at = c(seq(0, 0.9, 0.1), 1.01, 1.1),
       col.regions = c("#440154", "#482878", "#3E4A89", "#31688E", "#26828E",
                       "#1F9E89", "#35B779", "#6DCD59", "#B4DE2C", "#FDE725",
                       "#FF0000"))

This short example demonstrates how the prioritizr R package can be used to build a minimal conservation problem, how constraints and penalties can be iteratively added to the problem to obtain a solution, and how irreplaceability scores can be calculated for the solution to identify critical places. Although we explored just a few different functions for modifying the a conservation problem, the prioritizr R package provides many functions for specifying objectives, constraints, penalties, and decision variables, so that you can build and custom-tailor a conservation planning problem to suit your exact planning scenario.

Getting help

Please refer to the package website for more information on the prioritizr R package. This website contains a comprehensive tutorial on systematic conservation planning using the package, instructions for installing the Gurobi software suite to solve large-scale and complex conservation planning problems, a tutorial on building and solving problems that contain multiple management zones, and two worked examples involving real-world data in Tasmania, Australia and Salt Spring Island, Canada. Additionally, check out the teaching repository for seminar slides and workshop materials. If you have any questions about using the prioritizr R package or suggestions for improving it, please file an issue at the package's online code repository.

prioritizr's People

Contributors

jeffreyhanson avatar ricschuster avatar ninamorrell avatar mstrimas avatar orchid00 avatar bird-team-bot avatar

Stargazers

Alice Pidd avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.