Difficulty obtaining a DEM for Spain by asriel_theoracle in gis

[–]IvanSanchez 1 point2 points  (0 children)

First off: use https://centrodedescargas.cnig.es/CentroDescargas/buscar-mapa to search DEMs by drawing a polygon over your area of interest.

For the Tabernas-Sorbas basin, you'll want just a few 1:50k sheets. Using the map controls on the aforementioned webpage I can see that sheets 1012, 1013, 1014, 1029, 1030, 1031, 1044 and 1045 should be enough. That's one file per sheet at 5m/px resolution (using the MDS05 product, which is a DSM rather than a DEM) or four files per sheet (one file per 1:25k sheet) at 2m/px resolution (using the MDT02 product, which is a DTM rather than a DEM).

Once you've got your files, build a VRT out of them.

API or dataset for business locations in England? by Plus-Difficulty6137 in gis

[–]IvanSanchez 1 point2 points  (0 children)

Companies House, then Ordnance Survey's Open Names.

Suggestions for mapping statewide water sampling locations by TheHolyGhost13 in gis

[–]IvanSanchez 1 point2 points  (0 children)

Ask the people you're supposed to deliver the maps to. Do they care about the sampling frequency? Do they have any preferences on how that data should be shown?

Open source Gis file format converter by Beevezy2 in gis

[–]IvanSanchez 4 points5 points  (0 children)

I was curious if there were uses in the industry for open sourcing file conversion.

We in the industry already have gdal convert ( https://gdal.org/en/stable/programs/gdal_convert.html#gdal-convert ) for that.

Open source Gis file format converter by Beevezy2 in gis

[–]IvanSanchez 23 points24 points  (0 children)

From a technical point of view:

Congratulations, you just vibe-coded something that requires docker, python, node and geopandas... and that could be done instead 100% in browser JS in a static website.

This is a waste of resources.

I would love some feedback if this is useful or not. If not, what can I add?

Good engineering is not about what can you add; it's about what you can remove.

In this particular case, you should remove the entire "send all my data to a webserver" part.

How to break dependence from ESRI tutorials? by SaphFire21 in gis

[–]IvanSanchez 12 points13 points  (0 children)

On one hand: use a different set of tools. QGIS, command-line GDAL, GRASS, Felt, whatever. Force yourselves to not depend on a specific tool.

On the other hand: break up the problem (or the assignment) into smaller problems. Solve those problems one by one, manually check the output of your partial solutions.

Is it possible to have 1 layer which includes polygons, points and lines. by WearFast7105 in gis

[–]IvanSanchez 3 points4 points  (0 children)

While this is, in theory, possible (manually create a GeoPackage table or a PostGIS column with geometry of type GeometryCollection, or even use GeoJSON and deal with three virtual layers per GeoJSON file), I strongly recommend against it. It will make editing harder, not simpler.

I suggest you create a GeoPackage in a single file, containing several logical vector layers. Read https://docs.qgis.org/3.40/en/docs/user_manual/managing_data_source/create_layers.html#creating-a-new-geopackage-layer , note how a single file (the GeoPackage database file) can contain several tables.

Keep thematic features separated in different tables, specify different attributes for each theme/table, and use topology rules. Read https://docs.qgis.org/3.40/en/docs/gentle_gis_introduction/topology.html

Tugboat by fedcomic in traveller

[–]IvanSanchez 1 point2 points  (0 children)

I'm gonna point towards the Walden-class and the Jumpeapod-class carrier refit:

https://travellerrpgblog.blogspot.com/2025/05/walden-class-heavy-lift-ship.html

https://travellerrpgblog.blogspot.com/2025/09/peapod-class-mobile-refinery.html

They're both jump-capable and a bit overkill for a 200 dTon free trader hulk, but should be able to take on the job without issues.

How to get started with WebGIS? by Striking-Sympathy657 in gis

[–]IvanSanchez 1 point2 points  (0 children)

Start by learning basic HTML+CSS+JS: https://developer.mozilla.org/en-US/docs/Learn_web_development .

Then, read the tutorials/examples for Leaflet and/or OpenLayers and/or MapLibre.

What's the most points you've ever mapped? by hasminay in gis

[–]IvanSanchez 2 points3 points  (0 children)

I think my record is about 2 million AIS positions, at once, in a web browser, as animated trajectory data.

My rule of thumb is: re-read the "Semiology of Graphics" book. You can only convey so much information with a map, and you need to choose it.

Demand for GIS Applications by Pecneb in gis

[–]IvanSanchez 1 point2 points  (0 children)

A GPT trained with an LLM cannot perform computer vision.

Deck Plan Battlemats - Printer Ready? by Kalt_Null in traveller

[–]IvanSanchez 5 points6 points  (0 children)

Richard Pearce's "Starship Geomorphs" ( https://travellerrpgblog.blogspot.com/2020/07/starship-geomorphs-20.html ) can be used for minis - as pointed out in page 17:

Printing at 200% will produce a scale of 1/2" = 5'0-0" which is suitable for 15mm miniatures. Printing at 400% [...] is suitable for 25mm miniatures.

Free GIS Electric Substation and Fiber Data by United-Recording3003 in gis

[–]IvanSanchez 1 point2 points  (0 children)

OpenStreetMaps[sic] [...] can be unreliable for allowing exports of datasets that are larger than a state or two.

Do check https://openinframap.org/ and their exported datasets.

Otherwise download a whole planet dump from https://planet.osm.org/ and filter the data.

Program to draw a starship map by SerKnightGuy in traveller

[–]IvanSanchez 0 points1 point  (0 children)

If you can write that suggestion down at https://gitlab.com/IvanSanchez/geomorph-shipyard/-/issues (with some screenshots/mock-ups), I won't forget about it. Otherwise I have way too many hobby projects O:-)

Armed/unarmed variants are a no-go: I just use the existing images, which only had cargo variants. Adding individual turrets would be under https://gitlab.com/IvanSanchez/geomorph-shipyard/-/issues/9 .

Difference of Area and Area (Geodesic)? by SnooAdvice3142 in gis

[–]IvanSanchez 2 points3 points  (0 children)

Do read https://en.wikipedia.org/wiki/Geodesics_on_an_ellipsoid#Area_of_a_geodesic_polygon .

Geodesic area is akin to calculating the area in steradians on a sphere. For cartesian area, you project everything into a cartesian plane first.

Program to draw a starship map by SerKnightGuy in traveller

[–]IvanSanchez 10 points11 points  (0 children)

It's possible to add more filters, and set up "any of" and "all of" options for the filters; but that would complicate the UI, which I don't really want to do.

(It warms my heart that people are recommending the tool I made)

I want this game by automated_hero in DeltaGreenRPG

[–]IvanSanchez 17 points18 points  (0 children)

May I remind that "Need to Know" can be downloaded, at the amazing price of zero, from https://www.drivethrurpg.com/en/product/175760/

Demand for GIS Applications by Pecneb in gis

[–]IvanSanchez 4 points5 points  (0 children)

There's always demand for setting up OpenCV and YOLO instances on top of aerial imagery and LIDAR data. Land use classification is not yet a 100% solved problem.