-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix maxp crash
- Loading branch information
Showing
15 changed files
with
99 additions
and
56 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,4 @@ | |
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ | ||
^Dockerfile$ |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Package: rgeoda | ||
Type: Package | ||
Title: R Library for Spatial Data Analysis | ||
Version: 0.0.9 | ||
Date: 2022-04-09 | ||
Version: 0.0.10-4 | ||
Date: 2023-07-01 | ||
Authors@R: | ||
c(person(given = "Xun", family = "Li", email="[email protected]", role=c("aut","cre")), | ||
person(given = "Luc", family = "Anselin", email="[email protected]", role="aut")) | ||
|
@@ -39,4 +39,4 @@ Encoding: UTF-8 | |
Suggests: | ||
wkb, | ||
sp | ||
SystemRequirements: C++14 | ||
SystemRequirements: C++17 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM rocker/r-base | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update && apt-get install -y git libssl-dev libgeos-dev libgeos++-dev gdal-bin libproj-dev libgdal-dev libudunits2-dev | ||
|
||
RUN install2.r --error proxy Rcpp wk sp digest sf BH wkb TinyTex |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Submodule libgeoda
updated
17 files
+40 −41 | DataUtils.h | |
+40 −43 | GenUtils.cpp | |
+79 −81 | GenUtils.h | |
+57 −59 | SpatialIndAlgs.cpp | |
+3 −2 | clustering/azp.cpp | |
+3 −3 | clustering/pam.cpp | |
+75 −76 | clustering/redcap.cpp | |
+46 −47 | clustering/redcap.h | |
+2 −3 | rng.h | |
+1 −0 | sa/BatchLISA.h | |
+1 −0 | sa/LISA.h | |
+51 −51 | shape/ttmath/ttmathparser.h | |
+7 −7 | shape/ttmath/ttmaththreads.h | |
+1 −1 | shape/ttmath/ttmathtypes.h | |
+12 −14 | weights/GalWeight.cpp | |
+9 −11 | weights/GwtWeight.cpp | |
+2 −5 | weights/PolysToContigWeights.cpp |
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
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