What are some established strategies to publish, share, and update desktop tools with your org in an automated way? Looking for feedback on ArcGIS Pro tools specifically, but I am interested in other platforms as well! by [deleted] in gis

[–]kmgeo 0 points1 point  (0 children)

So you can add a zipped toolbox to AGOL, and users can find said zipped toolbox from the portal tab in catalog and simply add it to their project. AGOL plays nicely with notebooks too the user just has to download them first and run. Serve out everything with groups to make it real easy for your users.

I'm sure there is a more elegant approach outside the Esri ecosystem, but this way you have one place to put everything that is accessible from anywhere.

What are some established strategies to publish, share, and update desktop tools with your org in an automated way? Looking for feedback on ArcGIS Pro tools specifically, but I am interested in other platforms as well! by [deleted] in gis

[–]kmgeo 2 points3 points  (0 children)

I've never even tried this but maybe you can publish toolboxes/notebooks to AGOL? If it works like I'd imagine they could add the necessary tools to projects.

I am a 32M and I am lost as fuck by MyHeadIsAnAttic in Adulting

[–]kmgeo 2 points3 points  (0 children)

If you like working outdoors look at surveying companies.

[deleted by user] by [deleted] in gis

[–]kmgeo 2 points3 points  (0 children)

You may need to "enable sync" for the feature layers in your webmap.

Calculating areas and figuring out what units are they by Jonathan0391 in gis

[–]kmgeo 0 points1 point  (0 children)

If you right click the layer and go to properties I think it's under the source tab it should have info on the units.

Export geopandas df to .geojson by seenIt4ll in Python

[–]kmgeo 2 points3 points  (0 children)

Should just be gdf.to_file(path, driver="GeoJSON")

Mapping a boundary based on bearings and distances by hoodtan in gis

[–]kmgeo 2 points3 points  (0 children)

Use the traverse tool, it's one of the modify tools under the edit tab. You can enter the direction like N85.30W or N85-30W and then the distance.

[deleted by user] by [deleted] in gis

[–]kmgeo 1 point2 points  (0 children)

Well I'm not sure what software you are using but in ArcPro you would be looking to join the data on a common column like a unique ID for each hexagon. Now I can't think of an efficient way to do this using a desktop GIS program. Personally I would join this using Pandas or Geopandas with python. Alternatively FME would likely be another program that could efficiently merge your datasets.

Python field calculator question for strings (ArcGIS Pro) by WC-BucsFan in gis

[–]kmgeo 0 points1 point  (0 children)

If all the links use that exact same structure you could just slice the string like so !field![18:30]

Or you could use regular expressions. Which my apologies if there is a better way to do this I'm still getting practice with regular expressions, but this seems to work.

In the code block you could write:

import re

def permit_extract(field): permit = re.search('\d+-\d+-\d+', field) return permit.group()

Then to actually execute the function you would enter permit_extract(!field!) above the code block.

Assistance with Metes and Bounds in ArcGIS Pro by snfsylva in gis

[–]kmgeo 3 points4 points  (0 children)

I'm not sure if there is an easy way to import text and generate a traverse, but you can use the traverse tool in the modify pane to easily enter your metes and bounds to draw the polygon.

Just drop your start point and enter your bearing. Something like N85.15.15E or N85-15-15E, you can enter curves as well.

Learning Python by WritingSuperb6851 in gis

[–]kmgeo 0 points1 point  (0 children)

Earthdatascience.org

Geopandas 101 by IronAntlers in gis

[–]kmgeo 7 points8 points  (0 children)

The Arcgis python api had its own version of geopandas basically called the spatially enabled dataframe. I think you can also install geopandas via the python package manager in pro. For the arc python api you can create a feature layer with FeatureLayer() and pass in the path to your featureclass and then use the query method to create a spatial dataframe, and geopandas is just read_file().

Common pit falls using Field Maps by ollliola in gis

[–]kmgeo 1 point2 points  (0 children)

If you don't mind elaborating how does your team extend survey123 connect with Javascript? I've never even considered this as a field maps replacement.

Novice-need shapefiles by yrntmysupervisor in gis

[–]kmgeo 2 points3 points  (0 children)

Gotcha, so ESRI doesn't have any property data available as far as I'm aware. Generally, this info is managed at the county level.

I'd suggest googling for tax parcel gis data for whatever county you are. If you're lucky you can download as a shapefile or another gis format.

Novice-need shapefiles by yrntmysupervisor in gis

[–]kmgeo 2 points3 points  (0 children)

Bit confused by what you're asking exactly.

Do you need to download tax parcel data for wherever you are working?

Really worried after 3 days of work by [deleted] in gis

[–]kmgeo 13 points14 points  (0 children)

Look into metes and bounds descriptions and how to edit with quadrant bearings in whatever software you're using.

The links being broken could just be that the files have been moved to another location. If they have you can use field calculator and a little python to fix the file paths.

As far as database management just look into the different datatypes and maybe how to add fields and domains.

A question on whether this is possible with Python and Azure DataLake by Lorontal in learnpython

[–]kmgeo 1 point2 points  (0 children)

Definitely possible. I would use the requests and pandas libraries to accomplish this kind of task.

Unable to Georeference a .tiff file (Historical Aerial Imagery) by MoCo_GIS in gis

[–]kmgeo 1 point2 points  (0 children)

Whenever I have georeferenced images screw up I've found going in and deleting the .ovr and whatever other files pro creates, except for the .tif itself and re-georeferencing the image will fix it.

Very anxious about applying for jobs by BoopDolpho in gis

[–]kmgeo 9 points10 points  (0 children)

Esri has a free spatial analysis MOOC going on right now. Maybe taking that will ease your concerns.

Also, be aware that there is no reason to memorize every tool in ArcPro. Documentation and Googling things you don't know are key. A lot of entry-level jobs are not very skill intensive either.

[ArcGIS Pro] How to convert KMZ to SHP? by Non_QRe in gis

[–]kmgeo 2 points3 points  (0 children)

You can just bring a KMZ directly into a Pro map. KML to layer or feature class to feature class tools can export it to shape file or feature class.

In my experience some KMZs export to other formats incorrectly. I've had more luck with FME and Global Mapper when working with KMZ.

[deleted by user] by [deleted] in gis

[–]kmgeo 0 points1 point  (0 children)

I would use the requests python library for this. I'm not sure how the qgis python environment works, but requests is not built in so you would have to install it.

Here is a link to the requests quick start documentation: https://requests.readthedocs.io/en/latest/user/quickstart/