Space Engineers

Space Engineers

587 ratings
[QoL] Seismic Surveying
7
4
3
5
4
2
3
2
   
Award
Favorite
Favorited
Unfavorite
Type: Mod
Mod category: Block, Script, Other
File Size
Posted
Updated
1.211 MB
14 Jun, 2022 @ 7:22pm
1 Sep, 2023 @ 9:52am
23 Change Notes ( view )

Subscribe to download
[QoL] Seismic Surveying

In 1 collection by DraygoKorvan
Quality of Life Mods
7 items
Description
Frustrated with finding that Cobalt patch on Earthlike! Worry not science is here to alleviate your frustration! Clamp a thumper to the ground and with our advanced sensors you can detect far away ore spots.
Designed to allow you to discover ore nodes on planets similar to the way Radio Spectrometry works.

Seismic Survey
How to use:
Build the Seismic Surveyor block.
Add the Scan action to your cockpits toolbar from the block.
Attach block to planet (does not work on asteroids) - MUST be locked!
Press scan to update the map.
Add the Seismic Wide Survey LCD Script (not programming block script) to any LCD screen.
The screen will display all discovered ore nodes in the area
You use the Rotate actions (Right 5, Right 45, Left 5, Left 45) to rotate the scan line on the Wide Survey Screen, any nodes inside the marked area will be highlighted and a detailed readout will be available on the Seismic Detailed Scan.
For an ore to be present, you need to see spikes in the graph at all 3 points in the key for that particular ore.

Protip: You can hide scanners from the LCD screen by turning them off.

Mod Extensions
Modders! If you want to create your own Thumper block you can!
Add the following XML to the appropriate CubeBlock Definition to enable this script with the specific block. Block must be a Landing Gear
<ModExtensions> <ModComponents> <GameLogicComponent Name="SeismicThumperComponent" /> <!-- adds the component to the block --> </ModComponents> <Group Name="SeismicThumper"> <!-- Default is 3000 for large grid and 2000 for small--> <Decimal Name="Range" Value="2000" /> <!-- Higher is better--> <Decimal Name="Resolution" Value="100" /> </Group> </ModExtensions>

Special thanks to Chipstix213 for the model! Do not forget to thumbs up his mod as well!

Discord
Discord[discord.gg]
Popular Discussions View All (1)
0
5 Jul @ 8:30pm
how do i use the mod
cayden.sieteski
232 Comments
Tuuvis Van Kraun 21 Sep @ 6:16pm 
I found a place to modify the scan results and got it showing all ores in the patch.

In the file "SeismicThumperComponent.cs" line 247 onwards I limited the values before grabbing the peak:
for(int w = resultMap.Length - 1; w >= 0; w--)
{
// Limiter
if(resultMap[w] > 1f)
resultMap[w] = 1f;

if(resultMap[w] > peak)
{
peak = resultMap[w];
}
}

This is not a perfect fix; no matter the ore quantity in the scan cone, it will always have max signal. But at least it shows what there is!
Tuuvis Van Kraun 21 Sep @ 4:24pm 
Oh and forgot to mention: im using AQD - Deep Ores, which makes the patches bigger than normal, so it definitely could be stacking the signals the more ore there is, washing any other signals to a flat line.
Tuuvis Van Kraun 21 Sep @ 4:17pm 
Not entirely sure, but it almost feels like some ore signals are either strong AF that they hide others, or it simply doesn't add the other ores to the detailed signal list. The noise doesn't show at all when it picks up lots of ore in the patch, it's the flattest line you can see on any screen, unlike the spectrometer scanner on asteroids.
Tuuvis Van Kraun 21 Sep @ 4:12pm 
What @Dex said about only showing a single ore is indeed true. Makes it really hard to survey the planets when you can't see all there is. :(
Dex 13 Sep @ 9:07am 
On Pertam, ice deposits show as noise across the spectrum of the detailed scan screen. Magnesium deposits to not show at all on the Wide Survey. Deposits with multiple ores just show one (iron mostly). There must be some change in the formatting of the ore deposits in the planetary data file.
TheColossis 13 Sep @ 8:31am 
yeah, same with large grid. sat right next to a couple of patches that are not showing up on screen
TheColossis 13 Sep @ 7:46am 
Hi, are you aware of any issues with the new update, Apex?
I did a new start on Pertam with minimal mods, certainly nothing that affects ore or distribution, and the mod just isnt seeing a lot of the deposits.
I'm in a small grid rover. I'll do some testing
Graeme 12 Sep @ 6:36am 
How to I resolve the issues of it saying there is no scanner when I have one, tried everything but cannot get it to work, was working fine before!
DraygoKorvan  [author] 30 Aug @ 9:32am 
Default is 3000 for large grid and 2000 for small
Shellduck 30 Aug @ 4:00am 
I'm using it with ore redistribution mod, but can't find anything. Have only used the small grid surveyor, bit what is the range on small grid and large grid?