This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(sf) | |
| library(mapsf) | |
| countries <- st_read('/vsizip/./ne_110m_admin_0_countries.zip') | |
| peirce_south <- "+proj=ob_tran +o_proj=peirce_q +o_lat_p=-90 +o_lon_p=-250 +lon_0=0 +shape=square" | |
| c <- st_transform(countries, peirce_south) | |
| bb <- st_bbox(c) | |
| xrange <- bb$xmax - bb$xmin | |
| yrange <- bb$ymax - bb$ymin | |
| bb_cut <- st_bbox(c( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function makeTable(tab) { | |
| const table = document.createElement('table'); | |
| table.style = 'border: none; border-collapse: collapse;'; | |
| const tbody = document.createElement('tbody'); | |
| Object.keys(tab[0]) | |
| .forEach((key) => { | |
| const tr = document.createElement('tr'); | |
| const td1 = document.createElement('td'); | |
| const td2 = document.createElement('td'); | |
| td1.style = 'border-left: none; padding: 10px;'; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import PyPDF2 | |
| import os | |
| if __name__ == '__main__': | |
| # Le chemin du dossier qui contient les pdf | |
| path_input = '/home/mthh/Téléchargements/' | |
| # Le chemin du dossier de sorties qui va acceuillir les fichiers docx | |
| path_output = '/home/mthh/Téléchargements/output/' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pdf2docx import parse | |
| import os | |
| if __name__ == '__main__': | |
| # Le chemin du dossier qui contient les pdf | |
| path_input = '/home/mthh/Téléchargements/' | |
| # Le chemin du dossier de sorties qui va acceuillir les fichiers docx | |
| path_output = '/home/mthh/Téléchargements/output/' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PARIS | LILLE | DIEPPE | CHERBOURG-EN-COTENTIN | ROUEN | SAINT-BRIEUC | REIMS | NANCY | BREST | RENNES | LE MANS | CHAUMONT | EPINAL | TOURS | QUIMPER | VANNES | DIJON | BESANCON | LA ROCHE-SUR-YON | LA ROCHELLE | CLERMONT-FERRAND | LYON | ALBERTVILLE | GRENOBLE | RODEZ | BORDEAUX | TOULOUSE | HENDAYE | FOIX | PERPIGNAN | MARSEILLE | NICE | ||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| PARIS | 0 | 250 | 240 | 535 | 160 | 630 | 180 | 395 | 825 | 450 | 240 | 255 | 575 | 350 | 970 | 765 | 345 | 510 | 490 | 530 | 525 | 530 | 895 | 815 | 880 | 545 | 850 | 1015 | 1170 | 1100 | 935 | 1410 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(osmdata) | |
| my_opq <- opq(bbox = bb) # Ou bb est la bbox souhaitée | |
| # Tous les trucs "verts" (forêts, pelouses, parcs, vignes, etc.) | |
| green1 <- my_opq %>% | |
| add_osm_feature(key = "landuse", value = c("allotments", | |
| "farmland","cemetery", | |
| "forest", "grass", "greenfield", | |
| "meadow", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [5.005121249705553,6.7698845686391,1.021586733404547,9.385886443778872,4.548310353420675,6.354603075888008,8.976253494620323,5.191713236272335,4.7715608100406826,7.863712448161095,6.641501183621585,6.910042501986027,3.1715067266486585,0.873259964864701,4.488653743173927,8.203441253863275,9.454990027006716,4.74380933213979,2.5307508395053446,1.0617040214128792,5.692806332372129,9.596363012678921,8.741002352908254,7.56973524345085,9.692003140226007,4.701106182765216,0.25467247469350696,4.183835571166128,8.283707208465785,0.4071679199114442,0.8745960821397603,1.1438903491944075,8.09175917180255,7.531579013448209,3.8455851934850216,6.937670034822077,9.154734222684056,8.531235912814736,0.5893597682006657,2.1916877175681293,8.572350428439677,5.654468149878085,4.872281996067613,7.774307862855494,3.458382107783109,0.21459681214764714,5.651148806791753,8.170698226895183,3.793332518544048,3.538043680600822,5.262194804381579,4.906901775393635,7.565307286567986,0.5521937622688711,3.6833292455412447,3.1848908960819244,3.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: gpl-3.0 | |
| border: no | |
| width: 760 | |
| height: 606 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: MIT | |
| height: 535 |
NewerOlder