Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
zonages-habitat
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DREAL Pays de la Loire
Centre de Services de la Donnée
zonages-habitat
Compare revisions
master to 38-coeur_de_ville
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
dreal-pdl/csd/zonages-habitat
Select target project
No results found
38-coeur_de_ville
Select Git revision
Branches
0_COG_INSEE_em
38-acv
38-coeur_de_ville
38-pvd
master
5 results
Swap
Target
dreal-pdl/csd/zonages-habitat
Select target project
dreal-pdl/csd/zonages-habitat
1 result
master
Select Git revision
Branches
0_COG_INSEE_em
38-acv
38-coeur_de_ville
38-pvd
master
5 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
View open merge request
Commits on Source (1)
Intégration des Actions Coeur de Ville en base
· fc828baa
christine.gallais-jouadet
authored
7 months ago
fc828baa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ANCT/CDV.Rmd
+46
-0
46 additions, 0 deletions
ANCT/CDV.Rmd
with
46 additions
and
0 deletions
ANCT/CDV.Rmd
0 → 100644
Edit
View file @
fc828baa
---
title: "CDV"
author: "christine.gallais-jouadet"
date: "`r Sys.Date()`"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
#remotes::install_github("MaelTheuliere/COGiter")
library(COGiter)
#remotes::install_gitlab('dreal-pdl/csd/collectr', host="gitlab-forge.din.developpement-durable.gouv.fr")
library(collectr)
#remotes::install_gitlab('dreal-pdl/csd/datalibaba', host = "gitlab-forge.din.developpement-durable.gouv.fr")
library(datalibaba)
library(DBI)
library(dplyr)
#devtools::install_github("hadley/emo")
library(emo)
library(httr)
library(readxl)
library(RPostgres)
library(sf)
knitr::opts_chunk$set(echo=TRUE, message = FALSE, warning = FALSE, error = FALSE, cache=TRUE, eval=FALSE)
library(tidyverse)
```
# Chargement des données Action coeur de ville sur datagouv
```{r}
acv <- read_delim(file = "https://static.data.gouv.fr/resources/programme-action-coeur-de-ville/20241205-103920/liste-acv-com2024-20241202.csv")
```
# Chargement SGBD
```{r}
datalibaba::poster_data(data = acv,
table = "n_acv_000",
schema = "sial_zonages_habitat",
db = "production",
overwrite = TRUE,
pk = "insee_com",
user = "does")
```
This diff is collapsed.
Click to expand it.