Name Last Update
img Loading commit data...
Makefile Loading commit data...
README.md Loading commit data...
correcteur.c Loading commit data...
dictionnaire.c Loading commit data...
dictionnaire.h Loading commit data...
google-10000-english.txt Loading commit data...
sherlock.txt Loading commit data...
todo.txt Loading commit data...

README.md

Projet Programmation Avancée : Correcteur Orthographique

Ce programme implémente un correcteur orthographique minimaliste écrit en C dans le cadre du cours de Programmation Avancée de Mr. Rudametkin d'IMA3 à Polytech'Lille. Auteurs : Sébastien Dardenne et Corto Callerisa

Principe

Le programme importe un dictionnaire depuis un fichier texte passé en paramètre et s'en sert pour détecter les mots mal orthographié d'un texte donné.

Prérequis

Un ordinateur permettant de compiler en programme C ainsi qu'environ 10mo d'espace libre. La majorité de la mémoire étant occupé par les fichiers de tests, l'éxecutable faisant environ 23Ko.

Installation

You can clone the project with

git clone git@github.com:Tywacol/EPFL_imhof.git

and compile it with

cd EPFL_imhof
javac ch/epfl/imhof/Main.java

Usage

Arguments

java Main osmFile.osm.gz, hgtFile.hgt, botLeftLon, botLeftLat, topRightLong, topRightLat, rDpi, output_name

osmFile.osm.gz : the compressed data corresponding to the desired area. To create one go to , chose the location and the dimensions than click the export button.

Note : since a single .hgt file can contains data for a square of 1 of longitude and 1 of lattitude, the latittude and longitude of the area you chosen must be contained within 1 of each other. Example: the coordinate for interlaken are 7.7248 -> 7.994 in longitude and 46.6348 -> 46.7377 in latitude, it's in N46E007.hgt. Here 6.9999 -> 7.994 wouldn't work.

To compress the file on linux, run :

gzip map.osm 

hgtFile.hgt : The hgt file can be downloaded from http://viewfinderpanoramas.org/dem3.html. Choose your regions than click on the interactive map to download the file. You may need to extract it. Note that there is 3 resolutions available : 1" 3" and 15" (arc second). the smaller, the better the details of the digital elevation model. 1" is not available everywhere but 3", however the use of 15" is discouraged due to the lack of precision.

botLeftLon, botLeftLat, topRightLong, topRightLat : Coordinates of the bottom-left and top-right corner of the area inside of OSM file.

rDpi : it's the dpi of the final map. More means better details but increasing file size and runtime. 100 produces mostly balanced results.

output_name : the name of the file generated.

As an example the command to generate the map of interlaken in examples_files/interlaken/command.txt is :

java -cp . ch.epfl.imhof.Main interlaken_high.osm.gz N46E007.hgt 7.7248 46.6348 7.9943 46.7377 300 interlakenhighHD300.png

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT