Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Improve SRTM doc #14

Open
Mictronics opened this issue Nov 11, 2024 · 3 comments
Open

Improve SRTM doc #14

Mictronics opened this issue Nov 11, 2024 · 3 comments

Comments

@Mictronics
Copy link

Can you please improve the documentation on how to download SRTM files in .hgt format.
Linking that one page is a bit coarse. The Amazon S3 bucket for central Europe on that linked page results in access denied.

@meshtastic meshtastic deleted a comment Nov 11, 2024
@mrpatrick1991
Copy link
Collaborator

Can you show me the AWS command you used?

@Mictronics
Copy link
Author

The one shown on the linked page: aws s3 ls --no-sign-request s3://elevation-tiles-prod-eu/


Why I ask and why I want to setup your project for playing around:
Your dev map shows some non-realistic results. I have a node deployed where I also did a range test of 145km. For the same node location your dev map shows values of -129dBm for a range of less than 30km.
With 145km LOS range I got realistic -105dBm in Meshtastic app and calculated -108dBm.
See https://www.mictronics.de/posts/Meshtastic-869MHz-Rangetest/

@fifieldt
Copy link

fifieldt commented Nov 18, 2024

here's my hack to make a script to get the tiles:

#!/usr/bin/env python3

for N in range(0,59):
  for W in range(0,180):
    print("wget https://s3.amazonaws.com/elevation-tiles-prod/skadi/N%02d/N%02dW%03d.hgt.gz" % (N, N, W))
  for E in range(0,180):
    print("wget https://s3.amazonaws.com/elevation-tiles-prod/skadi/N%02d/N%02dE%03d.hgt.gz" % (N, N, E))

for S in range(1,56):
  for W in range(0,180):
    print("wget https://s3.amazonaws.com/elevation-tiles-prod/skadi/S%02d/S%02dW%03d.hgt.gz" % (S, S, W))
  for E in range(0,180):
    print("wget https://s3.amazonaws.com/elevation-tiles-prod/skadi/S%02d/S%02dE%03d.hgt.gz" % (S, S, E))

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants