Skip to content

Commit

Permalink
Merge pull request #59 from BaseAdresseNationale/fbourcier/fix-latest…
Browse files Browse the repository at this point in the history
…FIMOCT

fix latest fimoct
  • Loading branch information
IGNFBourcier authored Oct 1, 2024
2 parents a674942 + f87f8c3 commit 314d75e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Ce dépôt contient les scripts permettant de générer le [fichier des codes po

Les données de base sont produites à partir du [Code Officiel Géographique](https://www.data.gouv.fr/fr/datasets/58c984b088ee386cdb1261f3/) de l'INSEE et du [FIMOCT](https://www.data.gouv.fr/fr/datasets/5a3cc6b588ee3858d95178fc/) de la DGFiP.

[!WARNING]
Les fichiers FIMOCT ne sont plus générés depuis 2023.

### Production

```bash
Expand Down
4 changes: 2 additions & 2 deletions build/download-fimoct.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function isFIMOCTArchive(resource) {
}

function getMostRecent(resources) {
return last(sortBy(resources, resource => new Date(resource.published)))
return last(sortBy(resources, resource => new Date(resource.last_modified)))
}

async function getLatestFIMOCTArchiveURL() {
Expand Down Expand Up @@ -54,7 +54,7 @@ async function getLatestFIMOCTFileBuffer() {
}

async function getCurrentFIMOCTFileBuffer() {
const url = 'https://static.data.gouv.fr/resources/fichiers-fimoca-et-fimoct-relatifs-aux-structures-de-la-dgfip/20180817-134116/FIMOCTT8Z00061.zip'
const url = 'https://static.data.gouv.fr/resources/objet-disparition-des-fichiers-fantoir-fimoca-et-fimoct-en-fevrier-2023-mise-en-place-des-fichiers-topo-structures-uamissions-competences-et-acheminement/20230201-110343/fimoctt2z00121.zip'
return fetchAndExtractFIMOCT(url)
}

Expand Down

0 comments on commit 314d75e

Please sign in to comment.