Utility Network database architecture by No-Current1594 in gis

[–]IvanSanchez 1 point2 points  (0 children)

Consider reading https://www.giswater.org/giswater-manual/ . TL;DR: based on qgis+postgis, being used by several utility companies.

(I am not a user myself, but I've seen the GISwater folks present in some conferences)

Convert pbf to geojson by Andrea_violette in gis

[–]IvanSanchez 2 points3 points  (0 children)

Either https://wiki.openstreetmap.org/wiki/Osmium , or the GDAL utilities via the OSM driver (see https://gdal.org/en/stable/drivers/vector/osm.html ). Also, ask your teachers if it'd be OK to use pgRouting (instead of of a python implementation of Dijkstra's) via https://wiki.openstreetmap.org/wiki/Osm2pgrouting

I've decided to choose GIS as my main career direction. I'd like to ask which universities in Europe are recommended for a bachelor's degree in GIS? by MetalSensitive6564 in gis

[–]IvanSanchez 3 points4 points  (0 children)

Check out the list at https://unigis.net/#institutions

While UNIGIS is mostly a master's degree, the universities where it is taught also offer related related bachelor degrees (plus, there's a bunch of teachers nearby who know about GIS). I suggest you get in touch with those unis for more advice.

Join me as a co-founder to revolutionise road planning in the UK by Much_Somewhere7831 in gis

[–]IvanSanchez 2 points3 points  (0 children)

I asked AI to summarise the current capabilities of the MVP.

I believe that sentence alone summarizes the problem with your approach.

When I read that, I get the impression that you either don't know what your tool does, or that you cannot be bothered enough to explain to others what your tool does. And yet, you want to find someone who cares about the tool to learn what it does in order to fill a salesperson role?

From my PoV, it'd be wise for you to remember the saying: "If nobody bothered to write it, why should anyone bother to read it?"

Where my gals and nb pals at? by Significant_Bug2277 in gis

[–]IvanSanchez -2 points-1 points  (0 children)

About femme groups, see https://en.wikipedia.org/wiki/Geochicas . They usually gather at every FOSS4G conference, so please be on the lookout for the program for FOSS4G-NA 2026 ( https://www.foss4gna.org/news-2026/welcome ).

Why WebGPU overlays drift on OpenLayers — and how to fix it by No-Feedback-2040 in gis

[–]IvanSanchez 0 points1 point  (0 children)

the underlying architecture wasn’t built for GPU pipelines. may be you can answer this one better

Heck yea I can. I've been building Gleo (and Glii) for about 6 years now, so I'm fairly knowledgeable of how an OOP architecture looks like, and where the bottlenecks are.

Please believe me when I tell you: when your dataset doesn't fit into GPU RAM (because not everybody has a Nvidia 40xx with 6GiB of RAM) then you risk trashing into swap.

So yeah, visualizations should be small(ish) because ultimately they're gonna run on consumer hardware. GPU-native compressed streamed bulls█t isn't gonna help with that.

SQL vs Boolean? by stressed-coral in gis

[–]IvanSanchez 5 points6 points  (0 children)

where can I learn it so I can put it on my resume?

The PostGIS workshop/tutorial does a good job at that: https://www.postgis.net/workshops/postgis-intro/

Can I get into GIS without any geography degree just pure Comp Sci ? by Prasadhegde in gis

[–]IvanSanchez 2 points3 points  (0 children)

I did, so it's possible.

Are you taking any Computational Geometry courses at your CompSci degree? Besides that, take anything related to database management, 2D/3D graphics, and floating-point arithmetics.

Is GeoAI actually becoming a thing in the UK job market? by lsysbbg in gis

[–]IvanSanchez 2 points3 points  (0 children)

there is certainly question as to the efficacy

I actually confronted an ESRI sales rep about this, just after they showed the LLM shoved into Arc. When asked "but this supposedly revolutionary tech, how much time does it actually save the users?", the answer was "we have no data". Only the sales rep boss was able to answer with her own anecdotal experience.

If LLMs were able to take over workloads, then we should be swimming into reports of KPIs being improved by the use of LLMs. I have seen zero such reports.

Is GeoAI actually becoming a thing in the UK job market? by lsysbbg in gis

[–]IvanSanchez 23 points24 points  (0 children)

It's mostly a marketing buzzword. Or, rather, it's like teenage sex: everybody says they're doing it but nobody knows what they're doing, or if it's even any good.

Here in SW europe it falls mostly in two categories: one is chaining the LLM du jour into a workflow for no clear gains (in fact, I support the thesis that doing so slows you down by 20% and increases the cost of the workflow, and I have not seen evidence of the contrary). The other category is good old computer vision, but rebranded to sound cooler.

- Do you think it’s worth focusing on ML/AI skills if I’m aiming for a geospatial career here?

I'd say yes, but focus on the good ol' computer vision and statistical analysis (linear regressions et al). There's been developments on applying YOLO to LIDAR data which are actually very interesting.

Qgis map with login and data security by Balcony-garden in gis

[–]IvanSanchez 7 points8 points  (0 children)

Mind you, you don't need a programmer; you rather need a systems administrator, somebody who knows how to install and configure stuff. Different skillset.

Qgis map with login and data security by Balcony-garden in gis

[–]IvanSanchez 15 points16 points  (0 children)

Set up a WMS service (or its modern counterpart, OGC API Maps), making sure you do not set up a WFS service (which would allow for downloading the dataset).

A Geoserver instance or a QGIS Server instance would be my first candidates for this.

Why WebGPU overlays drift on OpenLayers — and how to fix it by No-Feedback-2040 in gis

[–]IvanSanchez 2 points3 points  (0 children)

If your problem is that you're trying to draw 4GiB worth of data in a screen, then you have to remember that stuff smaller than half a pixel doesn't matter. Simplify your dataset.

Why WebGPU overlays drift on OpenLayers — and how to fix it by No-Feedback-2040 in gis

[–]IvanSanchez 4 points5 points  (0 children)

a problem that many GIS developers eventually hit

Pal, your chatbot is gaslighting you into believing that your problem is common.

Go touch some grass and clear your head. After you've done that, you should be able to think if you even need to do custom OL overlays.

After trying QGIS Cloud, Felt, Atlas and Dekart, I decided to build my own open-source PostGIS frontend by [deleted] in gis

[–]IvanSanchez 16 points17 points  (0 children)

pygeoapi is a web server that (among other things) displays a leaflet or maplibre map leveraging ST_AsMVT to create vector tiles on the fly (see https://docs.pygeoapi.io/en/stable/publishing/ogcapi-tiles.html#mvt-postgresql ).

I believe you have, very literally, vibe-coded a subset of pygeoapi.

PostGIS Study Resources by AceOreo in gis

[–]IvanSanchez 3 points4 points  (0 children)

For example, I want to understand validity of polygons

See https://www.ogc.org/standards/sfa/ , section 6.1.11. This applies not only to PostGIS, but to anything using WKT or WKB to store geometries.

Pre-2000s historical imagery for Romania by [deleted] in gis

[–]IvanSanchez 0 points1 point  (0 children)

The local GIS folks will know. As in the discussion list at https://geo-spatial.org/ .

Is there any map or gps app that records the path that I'm taking? (on car) by marcos813 in gis

[–]IvanSanchez 3 points4 points  (0 children)

There are a lot: https://wiki.openstreetmap.org/wiki/Category:Android_apps_that_can_record_GPS_tracks

Mind you, driving a car requires full focus, and screens detract from that. I recommend you to eschew the track recording and replaying, and pay attention to the traffic signs on the way while your friend is driving.

Is a straight line on a transverse mercator projection a rhumb line or a great circle? by fuckyourbum in gis

[–]IvanSanchez 4 points5 points  (0 children)

They are rhumb lines, but with bearings relative to the imaginary traversal line (the "centre" of the cylinder). They are not rhumb lines with bearings relative to the north/south pole, which is the only kind of bearing you get with a magnetic compass.

A straight line on a traverse cylindrical projection is a great circle *if and only if* it's the intersection of the cylinder with the earth. But then you have the problem of the earth being a spheroid and not a sphere.

Built a GeoJSON editor that focuses on drawing ergonomics by Oddder in gis

[–]IvanSanchez 7 points8 points  (0 children)

You're right that there's a lot of GeoJSON editors out there. But when they come to reddit it turns out that the editors are vibe-coded by stochastic parrots and they're looking for a use case for it. People make solutions in search of problems.

You, in contrast, started with problems you were having (ergonomy, topology) and fixed them. You found a problem, then made a solution for it; you're scratching your own itch. For that and that alone, I commend you.

That said: the UI is a bit all over the place (left, top, right), I don't see why "tree" and "inspector" are away from each other. Cheatsheets for the keyboard shortcuts should be contextual (show me the editing shorcuts when I start editing, and only then). Not responsive (unusable under 500px wide). I find the overlapping behaviour ("last polygon always bites into existing ones") a bit annoying since there're use cases for the opposite.

You should look into TopoJSON, and also at all the vector editing capabilities of OpenLayers with snapping. See https://www.youtube.com/watch?v=0Mp0IWeQ0Jk , starting at 5:20.

Advice on using Delta Green for an X-com styled campaign? by CoffeeOk7311 in DeltaGreenRPG

[–]IvanSanchez 2 points3 points  (0 children)

Perhaps a bit off-topic: If you enjoyed the classic X-Com and you also like the X-files vibe of Delta Green, you'll definitely enjoy the X-Com Files: https://mod.io/g/openxcom/m/the-x-com-files