├── .Rprofile ├── .binder └── Dockerfile ├── .dockerignore ├── .gitattributes ├── .github └── workflows │ ├── dockerhub.yml │ └── publish.yml ├── .gitignore ├── 1_conceito.en.qmd ├── 1_conceito.qmd ├── 2_indicadores.en.qmd ├── 2_indicadores.qmd ├── 3_calculando_acesso.en.qmd ├── 3_calculando_acesso.qmd ├── 4_dados_gtfs.en.qmd ├── 4_dados_gtfs.qmd ├── 5_gtfstools.en.qmd ├── 5_gtfstools.qmd ├── 6_cenarios_transporte.en.qmd ├── 6_cenarios_transporte.qmd ├── 7_aopdata_populacao.en.qmd ├── 7_aopdata_populacao.qmd ├── 8_aopdata_uso_solo.en.qmd ├── 8_aopdata_uso_solo.qmd ├── 9_aopdata_acessibilidade.en.qmd ├── 9_aopdata_acessibilidade.qmd ├── Dockerfile ├── README.md ├── README.pt.md ├── _quarto.yml ├── _quarto_dependencies.R ├── bilingual_render.R ├── images ├── aop_data_scope.en.png ├── aop_data_scope.png ├── aop_geographical_scope.en.png ├── aop_geographical_scope.png ├── binder_badge.svg ├── cover.en.png ├── cover.png ├── cover_old.png ├── favicon.png ├── fortaleza_1.png ├── fortaleza_2.png ├── gtfs_scheme.png ├── ipea_logo.png └── validator_report.png ├── index.en.qmd ├── index.qmd ├── intro_access_book.Rproj ├── references.bib ├── references.en.qmd ├── references.qmd ├── render_to_pdf.R ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.dcf ├── s1_intro.en.qmd ├── s1_intro.qmd ├── s2_calculo.en.qmd ├── s2_calculo.qmd ├── s3_dados_tp.en.qmd ├── s3_dados_tp.qmd ├── s4_avaliacao_impacto.en.qmd ├── s4_avaliacao_impacto.qmd ├── s5_dados_aop.en.qmd ├── s5_dados_aop.qmd └── summary.qmd /.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/.Rprofile -------------------------------------------------------------------------------- /.binder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/.binder/Dockerfile -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dockerhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/.github/workflows/dockerhub.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/.gitignore -------------------------------------------------------------------------------- /1_conceito.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/1_conceito.en.qmd -------------------------------------------------------------------------------- /1_conceito.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/1_conceito.qmd -------------------------------------------------------------------------------- /2_indicadores.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/2_indicadores.en.qmd -------------------------------------------------------------------------------- /2_indicadores.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/2_indicadores.qmd -------------------------------------------------------------------------------- /3_calculando_acesso.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/3_calculando_acesso.en.qmd -------------------------------------------------------------------------------- /3_calculando_acesso.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/3_calculando_acesso.qmd -------------------------------------------------------------------------------- /4_dados_gtfs.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/4_dados_gtfs.en.qmd -------------------------------------------------------------------------------- /4_dados_gtfs.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/4_dados_gtfs.qmd -------------------------------------------------------------------------------- /5_gtfstools.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/5_gtfstools.en.qmd -------------------------------------------------------------------------------- /5_gtfstools.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/5_gtfstools.qmd -------------------------------------------------------------------------------- /6_cenarios_transporte.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/6_cenarios_transporte.en.qmd -------------------------------------------------------------------------------- /6_cenarios_transporte.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/6_cenarios_transporte.qmd -------------------------------------------------------------------------------- /7_aopdata_populacao.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/7_aopdata_populacao.en.qmd -------------------------------------------------------------------------------- /7_aopdata_populacao.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/7_aopdata_populacao.qmd -------------------------------------------------------------------------------- /8_aopdata_uso_solo.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/8_aopdata_uso_solo.en.qmd -------------------------------------------------------------------------------- /8_aopdata_uso_solo.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/8_aopdata_uso_solo.qmd -------------------------------------------------------------------------------- /9_aopdata_acessibilidade.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/9_aopdata_acessibilidade.en.qmd -------------------------------------------------------------------------------- /9_aopdata_acessibilidade.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/9_aopdata_acessibilidade.qmd -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/README.md -------------------------------------------------------------------------------- /README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/README.pt.md -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/_quarto.yml -------------------------------------------------------------------------------- /_quarto_dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/_quarto_dependencies.R -------------------------------------------------------------------------------- /bilingual_render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/bilingual_render.R -------------------------------------------------------------------------------- /images/aop_data_scope.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/aop_data_scope.en.png -------------------------------------------------------------------------------- /images/aop_data_scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/aop_data_scope.png -------------------------------------------------------------------------------- /images/aop_geographical_scope.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/aop_geographical_scope.en.png -------------------------------------------------------------------------------- /images/aop_geographical_scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/aop_geographical_scope.png -------------------------------------------------------------------------------- /images/binder_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/binder_badge.svg -------------------------------------------------------------------------------- /images/cover.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/cover.en.png -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/cover.png -------------------------------------------------------------------------------- /images/cover_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/cover_old.png -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/favicon.png -------------------------------------------------------------------------------- /images/fortaleza_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/fortaleza_1.png -------------------------------------------------------------------------------- /images/fortaleza_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/fortaleza_2.png -------------------------------------------------------------------------------- /images/gtfs_scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/gtfs_scheme.png -------------------------------------------------------------------------------- /images/ipea_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/ipea_logo.png -------------------------------------------------------------------------------- /images/validator_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/images/validator_report.png -------------------------------------------------------------------------------- /index.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/index.en.qmd -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/index.qmd -------------------------------------------------------------------------------- /intro_access_book.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/intro_access_book.Rproj -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/references.bib -------------------------------------------------------------------------------- /references.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/references.en.qmd -------------------------------------------------------------------------------- /references.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/references.qmd -------------------------------------------------------------------------------- /render_to_pdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/render_to_pdf.R -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/renv/settings.dcf -------------------------------------------------------------------------------- /s1_intro.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/s1_intro.en.qmd -------------------------------------------------------------------------------- /s1_intro.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/s1_intro.qmd -------------------------------------------------------------------------------- /s2_calculo.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/s2_calculo.en.qmd -------------------------------------------------------------------------------- /s2_calculo.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/s2_calculo.qmd -------------------------------------------------------------------------------- /s3_dados_tp.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/s3_dados_tp.en.qmd -------------------------------------------------------------------------------- /s3_dados_tp.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/s3_dados_tp.qmd -------------------------------------------------------------------------------- /s4_avaliacao_impacto.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/s4_avaliacao_impacto.en.qmd -------------------------------------------------------------------------------- /s4_avaliacao_impacto.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/s4_avaliacao_impacto.qmd -------------------------------------------------------------------------------- /s5_dados_aop.en.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/s5_dados_aop.en.qmd -------------------------------------------------------------------------------- /s5_dados_aop.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/s5_dados_aop.qmd -------------------------------------------------------------------------------- /summary.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipeaGIT/intro_access_book/HEAD/summary.qmd --------------------------------------------------------------------------------