All Questions
52 questions
0
votes
0
answers
70
views
can gdal.Driver handle S3 file paths?
A project that I am working on requires me to access geometries stored in a .gdb folder with OGR/GDAL as geopandas is currently not capable of accessing M values associated with those geometries.
I've ...
0
votes
0
answers
30
views
Matching Terrestrial LiDAR with Bathymetric Data
We have aerial LiDAR data of an island at low tide, and bathymetric data taken with a fish finder around the island at high tide (with about 1m of error).
Is it possible to combine these datasets? ...
0
votes
1
answer
58
views
How to upsert LineString in ArcGIS python via CSV (or other suggestion?)
I have been working on an ETL process to push / upsert my data from PostgreSQL into ArcGIS Online into a lines feature layer to be included on a WebMap. I have had no problem with using essentially ...
0
votes
0
answers
70
views
Error in ArcPro's Fill Missing Values Tool using arcpy in Python
Fill Missing Values Tool runs perfectly fine in ArcPro, but when attempting to do the same in Python using arcpy module, it returns an error. The error message indicates a problem within the internal ...
2
votes
1
answer
64
views
How do I pass in a parameter name into a function as an argument in python?
How do I pass in a parameter name into a function as an argument?
def edit_features_retry(editType,data):
AGOLlayer.edit_features(editType=data)
edit_features_retry("adds", datalayer)
...
0
votes
2
answers
96
views
How to iterate over values in a column pandas
I'm working on a project that needs one set of coordinates converted to another(from CRS 229 to CRS 3857), and I have a function that works when you put the former coordinates in, but I would like to ...
0
votes
2
answers
150
views
Add_layer in python api for arcgis neither completes action nor returns an error
I have a python script where I'm trying to add a feature layer to a webmap. The script completes without any errors but the feature layer doesn't get added.
Here's the code in question:
from arcgis....
0
votes
2
answers
609
views
Attempting to install conda package and receiving error
I'm attempting to install the arcgis conda package from esri using the following command:
conda install -c esri arcgis
It fails with the following error message:
github-image/arcgis-python-api [master]...
0
votes
1
answer
52
views
ArcPro: Identifying features that are surrounded by a certain dimension of another polygon
I am currently working on a project where I have two polygons files overlapping each over - Polygon A (blue) overlaps Polygon B (green). I would like to be able to identify the individual "blue&...
1
vote
1
answer
477
views
How to correctly grab Page Name from an ArcPro Map Series in Python?
Using ArcPro, I need to create a ton of maps for the foreseeable future, and each product I create needs to be in its own folder. I'm trying to make a Python script that will do the following to an ...
-3
votes
2
answers
1k
views
Extract all domains from gdb into xls sheet
I have a file geodatabase from esri (gdb) and I would like to extract or export all domains with all values into a xls sheet. I don't know if this is possible. My python knowledge is dumbed. I would ...
1
vote
1
answer
323
views
ipyleaflet layer not scaled/positioned correctly
I'm trying to overlay an esri bathymetry map on my south polar stereographic map using the 'url' function in ipyleaflet. Doing this results with {z}/{y}/{x} in the url inserts the layer, but at a ...
0
votes
1
answer
1k
views
ArcPro Python Package Manager not installing packages
I am working with ESRI ArcPro 2.9 and would like to install some additional python packages through the Python Package Manager. I've created a clone and made sure that is the default for the Project ...
0
votes
1
answer
335
views
Accessing text data in web-hosted GIS Map (ESRI) via python
I would like to interact with a web-hosted GIS map application here to scrape data contained therein. The data is behind a toggle button.
Normally, creating a soup of the websites text via ...
0
votes
2
answers
418
views
Extracting Shapefile or geojson from ArcGIS web map
Need help! I am trying to get zoning by-law information as geojson or shapefile from this ArcGIS web map site. Usually, the esri2geojson method would work fine 90% of the time even when there's a ...