generate.html 688 B

123456789101112131415161718192021
  1. <!doctype html>
  2. <title>ArduPilot Terrain Generator</title>
  3. <h1>ArduPilot Terrain Generator</h1>
  4. {% if error %}
  5. <p>Error: {{ error }}!</p>
  6. {% else %}
  7. <p>Terrain Generation complete. You can download from: <a href="{{ urlkey }}" download="terrain.zip">here</a>.</p>
  8. <p>This should be unzipped to the autopilot's SD card, within in the "APM/terrain" folder.</p>
  9. <p>This download will be available for 24 hours.</p>
  10. {% endif %}
  11. {% if outsideLat %}
  12. <p>Tiles outside of +60 to -60 latitude were requested, which are not covered by the terrain database. These tiles are not included in the generated zip file.</p>
  13. {% else %}
  14. <p></p>
  15. {% endif %}
  16. <br />
  17. <footer>{{uuidkey}}</footer>