HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Geo_ge

no profile record

Submissions

Advanced Astrology Software for Windows

halloran.com
2 points·by Geo_ge·4 miesiące temu·0 comments

Earth's Rotation Limits IBIS Performance to 6.3 Stops

thecentercolumn.com
5 points·by Geo_ge·6 miesięcy temu·0 comments

Air traffic control outage disrupts flight in Oceanic airspace

nzherald.co.nz
2 points·by Geo_ge·11 miesięcy temu·0 comments

comments

Geo_ge
·3 miesiące temu·discuss
Decreased vertical precision is an artefact of measurement geometry more than e.g. number of frequencies.

Horizontal position has the benefit of having satellites at almost all azimuths. But the vertical position estimate only gets satellites from at most half of possible elevations (above the horizon).

See "Vertical Dilution of Precision":

https://en.wikipedia.org/wiki/Dilution_of_precision
Geo_ge
·3 miesiące temu·discuss
There is a lot of talk of military uses here, but this technique is also used for environmental monitoring.

GNSS interferometric reflectometry (GNSS-IR) uses navigation satellites as the transmitter for a bi-static radar. The measurement device is any GNSS receiver (even your phone).

The technique can estimate environmental parameters like sea level, soil moisture, snow depth, and vegetation water content from systematic changes in the the multi-path around the antenna.

There is an open source Python package for this technique: https://github.com/kristinemlarson/gnssrefl

An introductory paper "The Accidental Tide Gauge": https://www.kristinelarson.net/wp-content/uploads/2015/10/La...
Geo_ge
·8 miesięcy temu·discuss
Oh wow, cool to see this on HN!

I'm a postgraduate researcher working on GNSS interferometric reflectometry (GNSS-IR), a related but slightly different technique.

I'll shout out this awesome open source project, where you can use GNSS-IR and your own RINEX files to measure tides or soil moisture around your antenna: https://gnssrefl.readthedocs.io/en/latest/

(Your antenna needs to be near the sea or bare soil, respectively)
Geo_ge
·10 miesięcy temu·discuss
You've got exactly the right idea, except "cross compare" is underselling it :)

Here's a previous thread on this topic[0].

For each (receiver, satellite) pair, you can calculate the TEC along the signal propagation path by comparing the time of flight of two carrier waves (e.g. L1 and L2)[1].

By fusing the data from each line of sight together you can get a rough, real time, 3D (4D) model of the ionosphere. Then, you have a separate problem of identifying ionospheric anomalies in the model and relating them to phenomena like earthquakes.

[0] https://news.ycombinator.com/item?id=42441772 [1] https://news.ycombinator.com/item?id=42471052
Geo_ge
·11 miesięcy temu·discuss
Maybe a global Moran's I test?

https://en.m.wikipedia.org/wiki/Moran%27s_I

Create the spatial weights matrix with great circle distances?
Geo_ge
·w zeszłym roku·discuss
Aerial survey LiDAR can process multiple returns from a single laser pulse. So, some energy might be reflected back from a leaf, but some energy will pass through (or around) the leaf, hit the ground, then reflect back to the sensor. Some systems can record 5+ points from a single laser pulse.

With this information, you can filter the point cloud to only include points from the final return, which is likely to be the ground/a solid surface unless the vegetation is very dense.
Geo_ge
·w zeszłym roku·discuss
A raw point cloud is run through a series of processing steps to label each point with a class, e.g. "Ground", "Low/Medium/High Vegetation", "Building", "Transmission Tower", etc.

https://desktop.arcgis.com/en/arcmap/latest/manage-data/las-...

There will be a different algorithm for each feature class. For example, points that are part of a building might be identified by finding groups of points that form a very flat surface. ML models can also do this based on training data.

https://pro.arcgis.com/en/pro-app/latest/tool-reference/3d-a...

The final digital elevation model (DEM) is then just taking the "Ground" class from the classified point cloud and using them to triangulate a surface. This differs from a digital surface model (DSM), which will triangulate a surface based on ground+building+vegetation points.
Geo_ge
·w zeszłym roku·discuss
I went through a similar process recently while building a solar powered Raspberry-Pi based GNSS receiver.

(like the OP) I originally looked at a very low power/speed GPIO modem, but it wasn't very stable and not really suitable for what I needed.

I ended up with a SIM7600G-H-M2 4G HAT on a Raspberry Pi 3b+: https://www.waveshare.com/wiki/SIM7600G-H-M2_4G_HAT

It's a bit pricer but very capable and well documented. There is a physical switch to enable power input for the modem over a separate USB to the data connection, so the power for transmission can bypass the Pi electronics.

After fiddling with the first modem for hours, this one was working in less than 5 minutes with RNDIS: https://www.waveshare.com/wiki/Raspberry_Pi_networked_via_RN...

I noticed during testing that the 4G connection would sometimes drop and require manual intervention to reset... So I added a systemd timer to test the connection and bring the interface down/up again whenever it disconnects. No problems since then, now with two months of uptime with ~200MB upload per day :)
Geo_ge
·w zeszłym roku·discuss
I'm running a Raspberry Pi based GNSS receiver from a 26 Ah SLA battery and an 80W panel. Just passed 2 weeks of uptime in a cloudy period of southern hemisphere autumn.

A monte carlo simulation using historical conditions said it had a ~95% chance of no downtime over 3 winter months. A slightly larger battery would bring that up to 99%.

The Pi (3b+), GNSS reciever (u-blox ZED F9P), and Waveshare 7600G 4G modem average about 3.5W idle. The GNSS reciever is about 0.1 - 0.2 W of that. Wifi would be more energy efficient, I imagine.