├── .github └── workflows │ └── osx-build.yml ├── .gitignore ├── DataUtils.h ├── GdaConst.h ├── GenGeomAlgs.cpp ├── GenGeomAlgs.h ├── GenUtils.cpp ├── GenUtils.h ├── GeoDaSet.h ├── LICENSE ├── README.md ├── SpatialIndAlgs.cpp ├── SpatialIndAlgs.h ├── SpatialIndTypes.h ├── clustering ├── DorlingCartogram.cpp ├── DorlingCartogram.h ├── azp.cpp ├── azp.h ├── azp_wrapper.cpp ├── azp_wrapper.h ├── cluster.cpp ├── cluster.h ├── fastcluster.cpp ├── fastcluster.h ├── joincount_ratio.cpp ├── joincount_ratio.h ├── make_spatial.cpp ├── make_spatial.h ├── maxp_wrapper.cpp ├── maxp_wrapper.h ├── pam.cpp ├── pam.h ├── pam_wrapper.cpp ├── pam_wrapper.h ├── redcap.cpp ├── redcap.h ├── redcap_wrapper.cpp ├── redcap_wrapper.h ├── schc_wrapper.cpp ├── schc_wrapper.h ├── spatial_validation.cpp └── spatial_validation.h ├── gda_clustering.cpp ├── gda_clustering.h ├── gda_data.cpp ├── gda_data.h ├── gda_interface.h ├── gda_sa.cpp ├── gda_sa.h ├── gda_weights.cpp ├── gda_weights.h ├── geofeature.h ├── knn ├── ANN.cpp ├── ANN │ ├── ANN.h │ ├── ANNperf.h │ └── ANNx.h ├── bd_fix_rad_search.cpp ├── bd_pr_search.cpp ├── bd_search.cpp ├── bd_tree.cpp ├── bd_tree.h ├── brute.cpp ├── kd_dump.cpp ├── kd_fix_rad_search.cpp ├── kd_fix_rad_search.h ├── kd_pr_search.cpp ├── kd_pr_search.h ├── kd_search.cpp ├── kd_search.h ├── kd_split.cpp ├── kd_split.h ├── kd_tree.cpp ├── kd_tree.h ├── kd_util.cpp ├── kd_util.h ├── perf.cpp ├── pr_queue.h └── pr_queue_k.h ├── libgeoda.cpp ├── libgeoda.h ├── pg ├── config.h ├── geoms.cpp ├── geoms.h ├── utils.cpp └── utils.h ├── rng.h ├── sa ├── BatchLISA.cpp ├── BatchLISA.h ├── BatchLocalMoran.cpp ├── BatchLocalMoran.h ├── BiLocalMoran.cpp ├── BiLocalMoran.h ├── LISA.cpp ├── LISA.h ├── MultiGeary.cpp ├── MultiGeary.h ├── MultiJoinCount.cpp ├── MultiJoinCount.h ├── UniG.cpp ├── UniG.h ├── UniGeary.cpp ├── UniGeary.h ├── UniGstar.cpp ├── UniGstar.h ├── UniJoinCount.cpp ├── UniJoinCount.h ├── UniLocalMoran.cpp └── UniLocalMoran.h ├── shape ├── centroid.h ├── jc_voronoi.h └── ttmath │ ├── ttmath.h │ ├── ttmathbig.h │ ├── ttmathdec.h │ ├── ttmathint.h │ ├── ttmathmisc.h │ ├── ttmathobjects.h │ ├── ttmathparser.h │ ├── ttmaththreads.h │ ├── ttmathtypes.h │ ├── ttmathuint.h │ ├── ttmathuint_noasm.h │ ├── ttmathuint_x86.h │ ├── ttmathuint_x86_64.h │ └── ttmathuint_x86_64_msvc.asm ├── shapelib ├── dbfopen.cpp ├── safileio.cpp ├── shapefil.h └── shpopen.cpp └── weights ├── GalWeight.cpp ├── GalWeight.h ├── GeodaWeight.cpp ├── GeodaWeight.h ├── GwtWeight.cpp ├── GwtWeight.h ├── PointsToContigWeights.cpp ├── PointsToContigWeights.h ├── PolysToContigWeights.cpp ├── PolysToContigWeights.h ├── VoronoiUtils.cpp └── VoronoiUtils.h /.github/workflows/osx-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/.github/workflows/osx-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/.gitignore -------------------------------------------------------------------------------- /DataUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/DataUtils.h -------------------------------------------------------------------------------- /GdaConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/GdaConst.h -------------------------------------------------------------------------------- /GenGeomAlgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/GenGeomAlgs.cpp -------------------------------------------------------------------------------- /GenGeomAlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/GenGeomAlgs.h -------------------------------------------------------------------------------- /GenUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/GenUtils.cpp -------------------------------------------------------------------------------- /GenUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/GenUtils.h -------------------------------------------------------------------------------- /GeoDaSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/GeoDaSet.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/README.md -------------------------------------------------------------------------------- /SpatialIndAlgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/SpatialIndAlgs.cpp -------------------------------------------------------------------------------- /SpatialIndAlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/SpatialIndAlgs.h -------------------------------------------------------------------------------- /SpatialIndTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/SpatialIndTypes.h -------------------------------------------------------------------------------- /clustering/DorlingCartogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/DorlingCartogram.cpp -------------------------------------------------------------------------------- /clustering/DorlingCartogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/DorlingCartogram.h -------------------------------------------------------------------------------- /clustering/azp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/azp.cpp -------------------------------------------------------------------------------- /clustering/azp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/azp.h -------------------------------------------------------------------------------- /clustering/azp_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/azp_wrapper.cpp -------------------------------------------------------------------------------- /clustering/azp_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/azp_wrapper.h -------------------------------------------------------------------------------- /clustering/cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/cluster.cpp -------------------------------------------------------------------------------- /clustering/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/cluster.h -------------------------------------------------------------------------------- /clustering/fastcluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/fastcluster.cpp -------------------------------------------------------------------------------- /clustering/fastcluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/fastcluster.h -------------------------------------------------------------------------------- /clustering/joincount_ratio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/joincount_ratio.cpp -------------------------------------------------------------------------------- /clustering/joincount_ratio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/joincount_ratio.h -------------------------------------------------------------------------------- /clustering/make_spatial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/make_spatial.cpp -------------------------------------------------------------------------------- /clustering/make_spatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/make_spatial.h -------------------------------------------------------------------------------- /clustering/maxp_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/maxp_wrapper.cpp -------------------------------------------------------------------------------- /clustering/maxp_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/maxp_wrapper.h -------------------------------------------------------------------------------- /clustering/pam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/pam.cpp -------------------------------------------------------------------------------- /clustering/pam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/pam.h -------------------------------------------------------------------------------- /clustering/pam_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/pam_wrapper.cpp -------------------------------------------------------------------------------- /clustering/pam_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/pam_wrapper.h -------------------------------------------------------------------------------- /clustering/redcap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/redcap.cpp -------------------------------------------------------------------------------- /clustering/redcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/redcap.h -------------------------------------------------------------------------------- /clustering/redcap_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/redcap_wrapper.cpp -------------------------------------------------------------------------------- /clustering/redcap_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/redcap_wrapper.h -------------------------------------------------------------------------------- /clustering/schc_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/schc_wrapper.cpp -------------------------------------------------------------------------------- /clustering/schc_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/schc_wrapper.h -------------------------------------------------------------------------------- /clustering/spatial_validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/spatial_validation.cpp -------------------------------------------------------------------------------- /clustering/spatial_validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/clustering/spatial_validation.h -------------------------------------------------------------------------------- /gda_clustering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/gda_clustering.cpp -------------------------------------------------------------------------------- /gda_clustering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/gda_clustering.h -------------------------------------------------------------------------------- /gda_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/gda_data.cpp -------------------------------------------------------------------------------- /gda_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/gda_data.h -------------------------------------------------------------------------------- /gda_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/gda_interface.h -------------------------------------------------------------------------------- /gda_sa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/gda_sa.cpp -------------------------------------------------------------------------------- /gda_sa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/gda_sa.h -------------------------------------------------------------------------------- /gda_weights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/gda_weights.cpp -------------------------------------------------------------------------------- /gda_weights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/gda_weights.h -------------------------------------------------------------------------------- /geofeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/geofeature.h -------------------------------------------------------------------------------- /knn/ANN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/ANN.cpp -------------------------------------------------------------------------------- /knn/ANN/ANN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/ANN/ANN.h -------------------------------------------------------------------------------- /knn/ANN/ANNperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/ANN/ANNperf.h -------------------------------------------------------------------------------- /knn/ANN/ANNx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/ANN/ANNx.h -------------------------------------------------------------------------------- /knn/bd_fix_rad_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/bd_fix_rad_search.cpp -------------------------------------------------------------------------------- /knn/bd_pr_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/bd_pr_search.cpp -------------------------------------------------------------------------------- /knn/bd_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/bd_search.cpp -------------------------------------------------------------------------------- /knn/bd_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/bd_tree.cpp -------------------------------------------------------------------------------- /knn/bd_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/bd_tree.h -------------------------------------------------------------------------------- /knn/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/brute.cpp -------------------------------------------------------------------------------- /knn/kd_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_dump.cpp -------------------------------------------------------------------------------- /knn/kd_fix_rad_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_fix_rad_search.cpp -------------------------------------------------------------------------------- /knn/kd_fix_rad_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_fix_rad_search.h -------------------------------------------------------------------------------- /knn/kd_pr_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_pr_search.cpp -------------------------------------------------------------------------------- /knn/kd_pr_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_pr_search.h -------------------------------------------------------------------------------- /knn/kd_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_search.cpp -------------------------------------------------------------------------------- /knn/kd_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_search.h -------------------------------------------------------------------------------- /knn/kd_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_split.cpp -------------------------------------------------------------------------------- /knn/kd_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_split.h -------------------------------------------------------------------------------- /knn/kd_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_tree.cpp -------------------------------------------------------------------------------- /knn/kd_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_tree.h -------------------------------------------------------------------------------- /knn/kd_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_util.cpp -------------------------------------------------------------------------------- /knn/kd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/kd_util.h -------------------------------------------------------------------------------- /knn/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/perf.cpp -------------------------------------------------------------------------------- /knn/pr_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/pr_queue.h -------------------------------------------------------------------------------- /knn/pr_queue_k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/knn/pr_queue_k.h -------------------------------------------------------------------------------- /libgeoda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/libgeoda.cpp -------------------------------------------------------------------------------- /libgeoda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/libgeoda.h -------------------------------------------------------------------------------- /pg/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/pg/config.h -------------------------------------------------------------------------------- /pg/geoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/pg/geoms.cpp -------------------------------------------------------------------------------- /pg/geoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/pg/geoms.h -------------------------------------------------------------------------------- /pg/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/pg/utils.cpp -------------------------------------------------------------------------------- /pg/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/pg/utils.h -------------------------------------------------------------------------------- /rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/rng.h -------------------------------------------------------------------------------- /sa/BatchLISA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/BatchLISA.cpp -------------------------------------------------------------------------------- /sa/BatchLISA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/BatchLISA.h -------------------------------------------------------------------------------- /sa/BatchLocalMoran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/BatchLocalMoran.cpp -------------------------------------------------------------------------------- /sa/BatchLocalMoran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/BatchLocalMoran.h -------------------------------------------------------------------------------- /sa/BiLocalMoran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/BiLocalMoran.cpp -------------------------------------------------------------------------------- /sa/BiLocalMoran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/BiLocalMoran.h -------------------------------------------------------------------------------- /sa/LISA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/LISA.cpp -------------------------------------------------------------------------------- /sa/LISA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/LISA.h -------------------------------------------------------------------------------- /sa/MultiGeary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/MultiGeary.cpp -------------------------------------------------------------------------------- /sa/MultiGeary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/MultiGeary.h -------------------------------------------------------------------------------- /sa/MultiJoinCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/MultiJoinCount.cpp -------------------------------------------------------------------------------- /sa/MultiJoinCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/MultiJoinCount.h -------------------------------------------------------------------------------- /sa/UniG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/UniG.cpp -------------------------------------------------------------------------------- /sa/UniG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/UniG.h -------------------------------------------------------------------------------- /sa/UniGeary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/UniGeary.cpp -------------------------------------------------------------------------------- /sa/UniGeary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/UniGeary.h -------------------------------------------------------------------------------- /sa/UniGstar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/UniGstar.cpp -------------------------------------------------------------------------------- /sa/UniGstar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/UniGstar.h -------------------------------------------------------------------------------- /sa/UniJoinCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/UniJoinCount.cpp -------------------------------------------------------------------------------- /sa/UniJoinCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/UniJoinCount.h -------------------------------------------------------------------------------- /sa/UniLocalMoran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/UniLocalMoran.cpp -------------------------------------------------------------------------------- /sa/UniLocalMoran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/sa/UniLocalMoran.h -------------------------------------------------------------------------------- /shape/centroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/centroid.h -------------------------------------------------------------------------------- /shape/jc_voronoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/jc_voronoi.h -------------------------------------------------------------------------------- /shape/ttmath/ttmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmath.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathbig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathbig.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathdec.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathint.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathmisc.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathobjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathobjects.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathparser.h -------------------------------------------------------------------------------- /shape/ttmath/ttmaththreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmaththreads.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathtypes.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathuint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathuint.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathuint_noasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathuint_noasm.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathuint_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathuint_x86.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathuint_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathuint_x86_64.h -------------------------------------------------------------------------------- /shape/ttmath/ttmathuint_x86_64_msvc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shape/ttmath/ttmathuint_x86_64_msvc.asm -------------------------------------------------------------------------------- /shapelib/dbfopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shapelib/dbfopen.cpp -------------------------------------------------------------------------------- /shapelib/safileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shapelib/safileio.cpp -------------------------------------------------------------------------------- /shapelib/shapefil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shapelib/shapefil.h -------------------------------------------------------------------------------- /shapelib/shpopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/shapelib/shpopen.cpp -------------------------------------------------------------------------------- /weights/GalWeight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/GalWeight.cpp -------------------------------------------------------------------------------- /weights/GalWeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/GalWeight.h -------------------------------------------------------------------------------- /weights/GeodaWeight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/GeodaWeight.cpp -------------------------------------------------------------------------------- /weights/GeodaWeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/GeodaWeight.h -------------------------------------------------------------------------------- /weights/GwtWeight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/GwtWeight.cpp -------------------------------------------------------------------------------- /weights/GwtWeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/GwtWeight.h -------------------------------------------------------------------------------- /weights/PointsToContigWeights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/PointsToContigWeights.cpp -------------------------------------------------------------------------------- /weights/PointsToContigWeights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/PointsToContigWeights.h -------------------------------------------------------------------------------- /weights/PolysToContigWeights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/PolysToContigWeights.cpp -------------------------------------------------------------------------------- /weights/PolysToContigWeights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/PolysToContigWeights.h -------------------------------------------------------------------------------- /weights/VoronoiUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/VoronoiUtils.cpp -------------------------------------------------------------------------------- /weights/VoronoiUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoDaCenter/libgeoda/HEAD/weights/VoronoiUtils.h --------------------------------------------------------------------------------