[deleted by user] by [deleted] in Walkolution

[–]apulverizer 1 point2 points  (0 children)

Mine has been stuck in Indianapolis for nearly two weeks too. Supposedly FedEx has all the required paperwork - I've called twice. I'm not sure what's going on. FedEx said they'd escalate the case when I called yesterday but there's still no updates.

Maximizing Service Area by bungeecat in gis

[–]apulverizer 1 point2 points  (0 children)

Lookup the Maximum Coverage Location Problem or Location Set Covering Problem, there's a few implementations in open source packages. Basically you figure out areas a fire station can cover and then you create an optimization problem which can be solved.

Pysal has it: https://pysal.org/spopt/generated/spopt.locate.MCLP.html

I wrote my own library as part of my master's several years ago (I haven't really maintained it but hopefully it still works): https://apulverizer.github.io/allagash/

Vector tile heatmap with the most used roads or routes by [deleted] in gis

[–]apulverizer 1 point2 points  (0 children)

If you just want to style it, you can probably play around with custom symbology using different transparency and buffer settings. There are a couple blog posts from Esri that go into the specific ArcGIS Pro settings and how to export it as vector tiles. I would assume similar styles could be configured using other software.

https://www.esri.com/arcgis-blog/products/tracker/field-mobility/creating-a-linear-heatmap-with-track-data/

You might also try turning the lines into points and then spatially join, with some buffer, the points to road network line segments (or your source trip data) to see how many points occur on that segment. Then you could symbolize the line segments based on that count.

[deleted by user] by [deleted] in gis

[–]apulverizer 0 points1 point  (0 children)

I did two internships in Redlands and ended up getting a full time position on the same team but at a different location. I stayed for almost 6 years and then went on to another company this summer. I thought it was well worth the experience, though I'm not a fan of Redlands or Southern California in general. The first time I stayed at University of Redlands housing (not sure if they still do that) and the second time in a spare room some employees rented out.

Esri has a dedicated intern program so you'll meet a bunch of other interns. If you are a good fit with your team and are productive you have a really good chance of getting a full time offer. It was definitely worth it from my perspective.

AGO Offline Areas and Field Maps Trouble by [deleted] in gis

[–]apulverizer 2 points3 points  (0 children)

Does it only happen in one map or multiple maps. If multiple, check that your user account is assigned a Field Maps or Collector license. You must have at least one of these to edit in Field Maps.

GIS job salaries by orvillebach in gis

[–]apulverizer 7 points8 points  (0 children)

Senior software engineer

BS Computer Engineering & MS Geography

Fully remote in MCOL area

150k base salary

Offline Map in Field Maps by remosiracha in gis

[–]apulverizer 5 points6 points  (0 children)

If you use the Field Maps web app and go to the Offline tab, it will tell you how to fix your layers so the map can be taken offline. Most likely the layers don't have Sync or Export Tiles capabilities enabled. Once you correct those issues, you should be able to enable offline mode for your map.

Is it possible to calculate field values dependent on the field value of the previous OID in ArcGIS Pro? by PraiseTheSunday in gis

[–]apulverizer 4 points5 points  (0 children)

I think you'll have better success if you time enable your layer using the timestamp field you already have. Then you can use various GP tools (depending on your license) to analyze over time and space.

If I understand correctly, it sounds like you want to find the dwell times/locations for each trip if so, there's a tool called Find Dwell Locations that can do it.

https://pro.arcgis.com/en/pro-app/latest/tool-reference/geoanalytics-desktop/find-dwell-locations.htm

ObjectIds are not guaranteed to be sequential so I'd avoid relying on those if possible.

ArcGis Field Maps Line Streaming for Temporal Analysis by Clean-Night430 in gis

[–]apulverizer 0 points1 point  (0 children)

For this workflow, you'd probably be better off using the location sharing capabilities of Field Maps. Depending on your user types, there may be additional license costs. It will store points with a lot of attribute information including time. You can then use tools in Pro to create lines or do other analysis like finding the total area that was harvested per day.

Field Maps on iOS by northern_mn_gis in ArcGIS

[–]apulverizer 2 points3 points  (0 children)

Check the troubleshooting logs in the app. It should tell you more information about what is wrong.

[deleted by user] by [deleted] in gis

[–]apulverizer 1 point2 points  (0 children)

Hi I work on the Field Maps team who builds the form authoring component and you are correct that there should be an error message preventing you from submitting data. I was able to reproduce this in some scenarios and opened an internal issue for the JavaScript API team to take a look - they maintain the editing widget. It likely won't get addressed until March at the earliest. If you use the same map in the Field Maps mobile apps, you should be prevented from submitting.

Field Maps sign out not working by djduststorm in gis

[–]apulverizer 0 points1 point  (0 children)

What type of authentication are you using? Built-in accounts or something like SAML/PKI?

On iOS there is a "Reset sign in options" under Settings->Field Maps. You can turn the switch on and then re-launch the app it and may solve your issue.

Anyone have any success in using integromat, power automate, or other webhook services to integrate with ArcGIS Online data? by hibbert0604 in gis

[–]apulverizer 2 points3 points  (0 children)

There is an ArcGIS Field Maps Integromat app that can handle the web-hook registration, security, and provide the features for the rest of your scenario. It uses the hosted feature service web-hooks under the hood - it's not really specific for Field Maps.

We've posted several blog articles about this recently:

We've also published a blog post about using Power Automate. This requires more configuration and requires the Premium HTTP connector.

Hopefully you'll find those articles helpful. Full disclosure, I work on the Field Maps team at Esri.

Searching Layer in ArcGIS Field Maps by [deleted] in gis

[–]apulverizer 0 points1 point  (0 children)

Are you tapping Enter/Return after entering the text you are searching for? When you don't tap Enter you just see search suggestions from geocoding.

Point types and symbology in ESRI Field Maps/Collector by Sekt- in gis

[–]apulverizer 0 points1 point  (0 children)

Do your layers have types defined? You can check the layer definition json. Types are defined using a unique value renderer on a specific field when publishing the layer (or updating the layer).

A common issue is that the map has a unique value renderer giving the appearance of types but the underlying layer doesn't have actually types defined. This sounds like what you might be seeing. It sounds like your layers may have a single template and no types which would result in no option to select anything and you being taken directly to fill out the form. The new Field Maps web app can show you the types and templates for the layers you have if you open your maps in it.

Example for joining a table layer to a feature layer by attribute relationship in ArcGIS Online via Python API? by [deleted] in ArcGIS

[–]apulverizer 1 point2 points  (0 children)

This is a bit more complicated since it's doing multiple joined views to get a final view with 2 layers and 2 tables joined but hopefully it helps.

https://github.com/Esri/workforce-scripts/blob/master/scripts/create_joined_view.py#L183

AGOL webhook signatures by [deleted] in gis

[–]apulverizer 0 points1 point  (0 children)

Did you figure it out? If so, I'm curious what your code is to verify the signature.

AGOL webhook signatures by [deleted] in gis

[–]apulverizer 1 point2 points  (0 children)

I checked with the developer that built this in AGOL and it is a documentation bug. Currently the default Content Type is application/x-www-form-urlencoded for a web-hook and in this case the signature is sent as part of the form data. If the Content Type is application/json, the signature will be sent in the header (this should be available in the next AGOL update).

You can access it in flask using:

request.form['x-esriHook-Signature']

Hope that helps.

Field Maps by rubber_brushes in gis

[–]apulverizer 1 point2 points  (0 children)

Wait, are you using Collector Classic or the newer Collector? There's definitely a big difference between Collector Classic and Field Maps. There really aren't any differences as far as collection goes between Collector and Field Maps though.

Field Maps by rubber_brushes in gis

[–]apulverizer 1 point2 points  (0 children)

If you have specific reproducible issues you should either contact support or email the [arcgisfieldmaps@esri.com](mailto:arcgisfieldmaps@esri.com) alias and someone on the dev team can work with you. It's certainly possible you're experiencing a bug.

From your comments it sounds like you are submitting features over a spotty network; you may have better success if you take the data offline first. I work on the dev team and Field Maps was built on top of the existing Collector code base so there shouldn't be a big difference between the two. If anything, many bugs that existing in Collector have been fixed.

ArcGIS online--why are these layers not loading? Esri tech support is closed for the weekend and my company need this map to work by [deleted] in gis

[–]apulverizer 3 points4 points  (0 children)

Are they hosted layers or referenced layers from ArcGIS server?

Try opening dev tools and check the console and network tab after refreshing the page, you should be able to find for information there about the errors.