├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── data.R ├── flowanalysis.R ├── flowcarre.R ├── flowcontig.R ├── flowdist.R ├── flowgini.R ├── flowjointure.R ├── flowlowup.R ├── flowmap.R ├── flowplaces.R ├── flowreduct.R ├── flowstructmat.R ├── flowtabmat.R ├── flowtype.R └── package.R ├── README.md ├── cartograflow.Rproj ├── data └── flowdata.RData ├── doc └── Logo_cartograflow.png ├── inst ├── preparation version 1.1.0 │ └── flowtype.R └── shape │ ├── MGP_TER.dbf │ ├── MGP_TER.prj │ ├── MGP_TER.shp │ └── MGP_TER.shx ├── man ├── COD_GEO_EPT.Rd ├── MOBPRO_ETP.Rd ├── cartograflow.Rd ├── flowanalysis.Rd ├── flowcarre.Rd ├── flowcontig.Rd ├── flowdist.Rd ├── flowgini.Rd ├── flowjointure.Rd ├── flowmap.Rd ├── flowreduct.Rd ├── flows.Rd ├── flowstructmat.Rd ├── flowtabmat.Rd ├── flowtype.Rd ├── geoid.Rd └── mat_ex.Rd ├── tests ├── testthat.R └── testthat │ ├── test_flowanalysis.R │ ├── test_flowcarre.R │ ├── test_flowcontig.R │ ├── test_flowdist.R │ ├── test_flowgini.R │ ├── test_flowjointure.R │ ├── test_flowmap.R │ ├── test_flowreduct.R │ ├── test_flowstructmat.R │ ├── test_flowtabmat.R │ └── test_flowtype.R └── vignettes ├── cartograflow_concentration.Rmd ├── cartograflow_concentration.html ├── cartograflow_distance.Rmd ├── cartograflow_distance.html ├── cartograflow_general.R ├── cartograflow_general.Rmd ├── cartograflow_general.html ├── cartograflow_ordinal_distance.Rmd ├── cartograflow_ordinal_distance.html └── data ├── COD_GEO_EPT.csv ├── COD_GEO_IDF.csv ├── COD_GEO_MGP.csv ├── MGP_TER.dbf ├── MGP_TER.prj ├── MGP_TER.shp ├── MGP_TER.shx ├── MGP_communes.cpg ├── MGP_communes.dbf ├── MGP_communes.prj ├── MGP_communes.shp ├── MGP_communes.shx ├── MGP_limite.cpg ├── MGP_limite.dbf ├── MGP_limite.prj ├── MGP_limite.sbn ├── MGP_limite.sbx ├── MGP_limite.shp ├── MGP_limite.shx ├── MGP_territoires.cpg ├── MGP_territoires.dbf ├── MGP_territoires.prj ├── MGP_territoires.sbn ├── MGP_territoires.sbx ├── MGP_territoires.shp ├── MGP_territoires.shx ├── MOBPRO_ETP.csv ├── MOBPRO_IDF2015.csv ├── fdc_ter.dbf ├── fdc_ter.prj ├── fdc_ter.shp ├── fdc_ter.shx ├── tab_IDF_mobpro.csv └── tab_MGP_mobpro.csv /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/data.R -------------------------------------------------------------------------------- /R/flowanalysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowanalysis.R -------------------------------------------------------------------------------- /R/flowcarre.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowcarre.R -------------------------------------------------------------------------------- /R/flowcontig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowcontig.R -------------------------------------------------------------------------------- /R/flowdist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowdist.R -------------------------------------------------------------------------------- /R/flowgini.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowgini.R -------------------------------------------------------------------------------- /R/flowjointure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowjointure.R -------------------------------------------------------------------------------- /R/flowlowup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowlowup.R -------------------------------------------------------------------------------- /R/flowmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowmap.R -------------------------------------------------------------------------------- /R/flowplaces.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowplaces.R -------------------------------------------------------------------------------- /R/flowreduct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowreduct.R -------------------------------------------------------------------------------- /R/flowstructmat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowstructmat.R -------------------------------------------------------------------------------- /R/flowtabmat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowtabmat.R -------------------------------------------------------------------------------- /R/flowtype.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/flowtype.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/R/package.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/README.md -------------------------------------------------------------------------------- /cartograflow.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/cartograflow.Rproj -------------------------------------------------------------------------------- /data/flowdata.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/data/flowdata.RData -------------------------------------------------------------------------------- /doc/Logo_cartograflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/doc/Logo_cartograflow.png -------------------------------------------------------------------------------- /inst/preparation version 1.1.0/flowtype.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/inst/preparation version 1.1.0/flowtype.R -------------------------------------------------------------------------------- /inst/shape/MGP_TER.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/inst/shape/MGP_TER.dbf -------------------------------------------------------------------------------- /inst/shape/MGP_TER.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/inst/shape/MGP_TER.prj -------------------------------------------------------------------------------- /inst/shape/MGP_TER.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/inst/shape/MGP_TER.shp -------------------------------------------------------------------------------- /inst/shape/MGP_TER.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/inst/shape/MGP_TER.shx -------------------------------------------------------------------------------- /man/COD_GEO_EPT.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/COD_GEO_EPT.Rd -------------------------------------------------------------------------------- /man/MOBPRO_ETP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/MOBPRO_ETP.Rd -------------------------------------------------------------------------------- /man/cartograflow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/cartograflow.Rd -------------------------------------------------------------------------------- /man/flowanalysis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flowanalysis.Rd -------------------------------------------------------------------------------- /man/flowcarre.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flowcarre.Rd -------------------------------------------------------------------------------- /man/flowcontig.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flowcontig.Rd -------------------------------------------------------------------------------- /man/flowdist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flowdist.Rd -------------------------------------------------------------------------------- /man/flowgini.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flowgini.Rd -------------------------------------------------------------------------------- /man/flowjointure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flowjointure.Rd -------------------------------------------------------------------------------- /man/flowmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flowmap.Rd -------------------------------------------------------------------------------- /man/flowreduct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flowreduct.Rd -------------------------------------------------------------------------------- /man/flows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flows.Rd -------------------------------------------------------------------------------- /man/flowstructmat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flowstructmat.Rd -------------------------------------------------------------------------------- /man/flowtabmat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flowtabmat.Rd -------------------------------------------------------------------------------- /man/flowtype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/flowtype.Rd -------------------------------------------------------------------------------- /man/geoid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/geoid.Rd -------------------------------------------------------------------------------- /man/mat_ex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/man/mat_ex.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_flowanalysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat/test_flowanalysis.R -------------------------------------------------------------------------------- /tests/testthat/test_flowcarre.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat/test_flowcarre.R -------------------------------------------------------------------------------- /tests/testthat/test_flowcontig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat/test_flowcontig.R -------------------------------------------------------------------------------- /tests/testthat/test_flowdist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat/test_flowdist.R -------------------------------------------------------------------------------- /tests/testthat/test_flowgini.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat/test_flowgini.R -------------------------------------------------------------------------------- /tests/testthat/test_flowjointure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat/test_flowjointure.R -------------------------------------------------------------------------------- /tests/testthat/test_flowmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat/test_flowmap.R -------------------------------------------------------------------------------- /tests/testthat/test_flowreduct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat/test_flowreduct.R -------------------------------------------------------------------------------- /tests/testthat/test_flowstructmat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat/test_flowstructmat.R -------------------------------------------------------------------------------- /tests/testthat/test_flowtabmat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat/test_flowtabmat.R -------------------------------------------------------------------------------- /tests/testthat/test_flowtype.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/tests/testthat/test_flowtype.R -------------------------------------------------------------------------------- /vignettes/cartograflow_concentration.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/cartograflow_concentration.Rmd -------------------------------------------------------------------------------- /vignettes/cartograflow_concentration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/cartograflow_concentration.html -------------------------------------------------------------------------------- /vignettes/cartograflow_distance.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/cartograflow_distance.Rmd -------------------------------------------------------------------------------- /vignettes/cartograflow_distance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/cartograflow_distance.html -------------------------------------------------------------------------------- /vignettes/cartograflow_general.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/cartograflow_general.R -------------------------------------------------------------------------------- /vignettes/cartograflow_general.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/cartograflow_general.Rmd -------------------------------------------------------------------------------- /vignettes/cartograflow_general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/cartograflow_general.html -------------------------------------------------------------------------------- /vignettes/cartograflow_ordinal_distance.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/cartograflow_ordinal_distance.Rmd -------------------------------------------------------------------------------- /vignettes/cartograflow_ordinal_distance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/cartograflow_ordinal_distance.html -------------------------------------------------------------------------------- /vignettes/data/COD_GEO_EPT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/COD_GEO_EPT.csv -------------------------------------------------------------------------------- /vignettes/data/COD_GEO_IDF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/COD_GEO_IDF.csv -------------------------------------------------------------------------------- /vignettes/data/COD_GEO_MGP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/COD_GEO_MGP.csv -------------------------------------------------------------------------------- /vignettes/data/MGP_TER.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_TER.dbf -------------------------------------------------------------------------------- /vignettes/data/MGP_TER.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_TER.prj -------------------------------------------------------------------------------- /vignettes/data/MGP_TER.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_TER.shp -------------------------------------------------------------------------------- /vignettes/data/MGP_TER.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_TER.shx -------------------------------------------------------------------------------- /vignettes/data/MGP_communes.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /vignettes/data/MGP_communes.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_communes.dbf -------------------------------------------------------------------------------- /vignettes/data/MGP_communes.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_communes.prj -------------------------------------------------------------------------------- /vignettes/data/MGP_communes.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_communes.shp -------------------------------------------------------------------------------- /vignettes/data/MGP_communes.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_communes.shx -------------------------------------------------------------------------------- /vignettes/data/MGP_limite.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /vignettes/data/MGP_limite.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_limite.dbf -------------------------------------------------------------------------------- /vignettes/data/MGP_limite.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_limite.prj -------------------------------------------------------------------------------- /vignettes/data/MGP_limite.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_limite.sbn -------------------------------------------------------------------------------- /vignettes/data/MGP_limite.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_limite.sbx -------------------------------------------------------------------------------- /vignettes/data/MGP_limite.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_limite.shp -------------------------------------------------------------------------------- /vignettes/data/MGP_limite.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_limite.shx -------------------------------------------------------------------------------- /vignettes/data/MGP_territoires.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /vignettes/data/MGP_territoires.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_territoires.dbf -------------------------------------------------------------------------------- /vignettes/data/MGP_territoires.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_territoires.prj -------------------------------------------------------------------------------- /vignettes/data/MGP_territoires.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_territoires.sbn -------------------------------------------------------------------------------- /vignettes/data/MGP_territoires.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_territoires.sbx -------------------------------------------------------------------------------- /vignettes/data/MGP_territoires.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_territoires.shp -------------------------------------------------------------------------------- /vignettes/data/MGP_territoires.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MGP_territoires.shx -------------------------------------------------------------------------------- /vignettes/data/MOBPRO_ETP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MOBPRO_ETP.csv -------------------------------------------------------------------------------- /vignettes/data/MOBPRO_IDF2015.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/MOBPRO_IDF2015.csv -------------------------------------------------------------------------------- /vignettes/data/fdc_ter.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/fdc_ter.dbf -------------------------------------------------------------------------------- /vignettes/data/fdc_ter.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/fdc_ter.prj -------------------------------------------------------------------------------- /vignettes/data/fdc_ter.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/fdc_ter.shp -------------------------------------------------------------------------------- /vignettes/data/fdc_ter.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/fdc_ter.shx -------------------------------------------------------------------------------- /vignettes/data/tab_IDF_mobpro.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/tab_IDF_mobpro.csv -------------------------------------------------------------------------------- /vignettes/data/tab_MGP_mobpro.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbahoken/cartogRaflow/HEAD/vignettes/data/tab_MGP_mobpro.csv --------------------------------------------------------------------------------