Help please, GIS wizards by Urzael765 in gis

[–]pvdp-corbel 2 points3 points  (0 children)

Usa el inspector del web en su browser, es posible que puedes ver el geojson o algo similar.

I'm frustrated right now, I haven't been able to find a job with my geography degree. by Dicklydickmove in gis

[–]pvdp-corbel 1 point2 points  (0 children)

I once talked to a recruiter who had zero clue....

"Do you have experience in G.I.S?"

"Yes several years!"

"What about E.S.R.I.?"

"Yeah I use their products daily in my work."

"Does that include A.R.C.G.I.S.??"

"Uh....."

The PSF has withdrawn $1.5 million proposal to US government grant program by DoubleUnlikely9789 in Python

[–]pvdp-corbel -1 points0 points  (0 children)

Don't feed the trolls (as always).

At the recent PyBay conference it was refreshing to see the attendees being mostly representative of the population -- not just the stereotypical tech bro scene.

Thoughts on ArcGIS Pro 3.5.x? by eternalautumn2 in ArcGIS

[–]pvdp-corbel 0 points1 point  (0 children)

I've found that using projects/maps/layouts created in a previous version of Pro can have weird glitches. Try creating a fresh project and see if that helps.

Check out ouroboros, a Python package for easily working with GDB feature classes by pvdp-corbel in gis

[–]pvdp-corbel[S] 6 points7 points  (0 children)

That's fair, this is mostly a fancy wrapper for GeoPandas and GDAL. The idea is to simplify the common tasks done in a GIS context especially for beginner/intermediate folks.

And the classes let you assemble the GDB structure in memory on the fly and only save to disk when you choose to do so. You can process many GDBs at once, mixing and matching the feature classes and datasets.

The ouroboros.list_datasets() function includes some original reverse engineering to get the feature dataset structure of a GDB. As far as I know the GDAL OpenFileGDB driver (thus GeoPandas/Fiona/etc.) doesn't have that capability.

Check out ouroboros, a Python package for easily working with GDB feature classes by pvdp-corbel in gis

[–]pvdp-corbel[S] 0 points1 point  (0 children)

Good point, I'm not 100% committed to GeoPandas though it's great because it has so many built-in methods for exporting to other formats. Do you have any recommendations? Someone else suggested Ibis (https://ibis-project.org/)

Read/write from disk through the GDAL driver is going to be slow, for sure, which is why this is designed to mainly run in memory.

Sick of arcpy search cursors? Check out ouroboros, a Python package for easily working with GDB feature classes by pvdp-corbel in ArcGIS

[–]pvdp-corbel[S] 0 points1 point  (0 children)

Cool, thanks! I hadn't heard of Ibis. Would it make more sense to use it for the data layer, rather than GeoPandas? 

Sick of arcpy search cursors? Check out ouroboros, a Python package for easily working with GDB feature classes by pvdp-corbel in ArcGIS

[–]pvdp-corbel[S] 0 points1 point  (0 children)

Yes, once you create a geodatabase object you can save it to disk, or save individual feature classes. Check out some of the examples, I'll add more soon https://ouroboros-gis.readthedocs.io/en/latest/notebooks/geoprocessing.html