Browse Source

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri 8 years ago
parent
commit
11bbdab1cf
1 changed files with 7 additions and 7 deletions
  1. 7
    7
      README-en.md

+ 7
- 7
README-en.md View File

153
 ---
153
 ---
154
 
154
 
155
 ---
155
 ---
156
-## Reading data from text files in C++
156
+## Reading Data from Text Files in C++
157
 
157
 
158
 This laboratory experience requires you to read data from a text file. You can skip the next section if you feel that your file reading skills are competent. Otherwise, read on... 
158
 This laboratory experience requires you to read data from a text file. You can skip the next section if you feel that your file reading skills are competent. Otherwise, read on... 
159
 
159
 
294
 ##Laboratory Session:
294
 ##Laboratory Session:
295
 
295
 
296
 
296
 
297
-### Exercise 0 - Download and understand the code
297
+### Exercise 0 - Download and Understand the Code
298
 
298
 
299
 
299
 
300
 ####Instructions
300
 ####Instructions
332
 2. `void drawPoints(GISPOI* gisLocations, unsigned int size);`: Given an array of `GISPOI` objects and their size, displays their locations as points in the map.
332
 2. `void drawPoints(GISPOI* gisLocations, unsigned int size);`: Given an array of `GISPOI` objects and their size, displays their locations as points in the map.
333
 
333
 
334
 
334
 
335
-### Exercise 1 - Read the georeferenced points into an array
335
+### Exercise 1 - Read the Georeferenced Points into an Array
336
 
336
 
337
 
337
 
338
 Remember that you will only be changing code in the `main.cpp` file. Your first task will be to add code to read the entire contents of a file into an array of `GISPOI` objects.
338
 Remember that you will only be changing code in the `main.cpp` file. Your first task will be to add code to read the entire contents of a file into an array of `GISPOI` objects.
374
 
374
 
375
 
375
 
376
 
376
 
377
-### Exercise 2 - Max and min functions
377
+### Exercise 2 - Max and Min Functions
378
 
378
 
379
 
379
 
380
 Once you have the information of georeferenced cities in the array of objects, you can start processing them in many interesting ways. We will start with some basic operations.
380
 Once you have the information of georeferenced cities in the array of objects, you can start processing them in many interesting ways. We will start with some basic operations.
396
 
396
 
397
 
397
 
398
 
398
 
399
-### Exercise 3 - Compute the cycle distance
399
+### Exercise 3 - Compute the Cycle Distance
400
 
400
 
401
 
401
 
402
 1. Read the documentation and implement the function `double cycleDistance(GISPOI A[], int size, int P[])`. Invoke the function from `main()` as indicated in the comments inside the `main()`   function:
402
 1. Read the documentation and implement the function `double cycleDistance(GISPOI A[], int size, int P[])`. Invoke the function from `main()` as indicated in the comments inside the `main()`   function:
406
 
406
 
407
 
407
 
408
 
408
 
409
-### Exercise 4 - More fun!
409
+### Exercise 4 - More Fun!
410
 
410
 
411
 
411
 
412
 1. Change your code so that it now opens the `pr.txt` file.  Validate your results and marvel at your great achievement!
412
 1. Change your code so that it now opens the `pr.txt` file.  Validate your results and marvel at your great achievement!
434
 ---
434
 ---
435
 
435
 
436
 
436
 
437
-## Referencias
437
+## References
438
 
438
 
439
 
439
 
440
 [1] https://en.wikipedia.org/wiki/Great-circle_distance
440
 [1] https://en.wikipedia.org/wiki/Great-circle_distance