|
POST
|
Nice one Joe, however it may be a requirement with this update frequency to have no downtime, in which case I would lean to the ETL approach which operates one feature at a time or to the feature service REST API so you only operate on the feature service change set in milliseconds. Sorry to be pedantic ;-).
... View more
02-06-2020
01:55 PM
|
0
|
3
|
6246
|
|
POST
|
This topic describes using the arcgis API: Overwriting feature layers | ArcGIS for Developers
... View more
02-06-2020
01:37 PM
|
0
|
1
|
6246
|
|
POST
|
Hi An ETL approach can operate directly on both the CSV file and the feature service: https://community.esri.com/community/open-platform-standards-and-interoperability/blog/2019/05/31/automate-your-etl-processes-on-a-schedule You could script it entirely too a few ways. Is the geometry in the data or are you geocoding?
... View more
02-06-2020
01:30 PM
|
0
|
1
|
6246
|
|
POST
|
if you are working in Pro you also have available arcpy.time.EsriTimeDelta()
... View more
02-06-2020
07:39 AM
|
2
|
0
|
4101
|
|
POST
|
Hi, if USGS have gone to the trouble of maintaining geodetic control for the master LiDAR data and say the raster is in the 2011 realization I'm guessing the shapefile is the dataset to investigate and don't assume they got the datum wrong. This thread NAD83 vs. NAD83(2011) mentions a transformation to use (NAD_1983_HARN_To_NAD_1983_2011) if the shapefile is in the original NAD 83 datum so try that first.
... View more
02-05-2020
06:56 AM
|
1
|
1
|
4668
|
|
POST
|
Hi K Sathish, at present the licensing issues seem like a hard limit, so no, we cannot say i.dgn support is planned. If you have Data Interoperability extension there is a cross-grade product that will add the format, see FME Desktop ArcGIS Data Interop Edition here: ArcGIS Data Interoperability & FME Desktop Comparison
... View more
01-28-2020
07:43 AM
|
2
|
1
|
2628
|
|
POST
|
Hi, Data Interoperability extension does not support .i.dgn files, due to licensing issues, please use the FME product.
... View more
01-27-2020
02:54 PM
|
2
|
0
|
2628
|
|
POST
|
Hi, a useful division can be derived like this too: Minimum Bounding Geometry—Data Management toolbox | ArcGIS Desktop Subdivide Polygon—Data Management toolbox | ArcGIS Desktop Or this very stylish option 😉 https://pm.maps.arcgis.com/home/item.html?id=9398bd2232cb4c8490b0b05015364d28
... View more
01-21-2020
06:37 AM
|
1
|
0
|
1089
|
|
POST
|
I can see a link to download a spreadsheet which exposes coordinates: http://www.sites.bipt.be/lijst-liste.xlsx I simplified it (attached, using Data Interoperability extension). Then Convert Coordinate Notation tool can expose lat/long better:
... View more
01-15-2020
07:34 AM
|
1
|
0
|
5482
|
|
POST
|
Another option is to implement this approach which separates your business tables and related tables with system managed fields: https://pm.maps.arcgis.com/home/item.html?id=50e74e318a5e4e17b1cc2a06258daba1
... View more
01-08-2020
07:01 AM
|
0
|
0
|
3852
|
|
IDEA
|
I got it from a colleague whose name I have spaced 😉
... View more
01-07-2020
03:15 PM
|
0
|
0
|
5418
|
|
POST
|
Stephen, please uninstall both Data Interoperability and Pro 2.4, then re-install Pro and Data Interoperability. We have seen this come up occasionally in the past but complete un/re-install should fix it.
... View more
01-06-2020
07:00 AM
|
1
|
0
|
1031
|
|
POST
|
Hi, this begs the question if Geocode Addresses should return a feature class and a separate related table with the match details keyed on ResultID. Then the output features would not be so overloaded. If you agree then please create an Ideas item and we can monitor votes on it.
... View more
01-06-2020
06:40 AM
|
0
|
0
|
3852
|
|
IDEA
|
Hi, I'm no expert on this but you can save a raster processing function chain as an RFT file and re-use it on any raster.
... View more
12-20-2019
06:23 AM
|
1
|
1
|
3241
|
|
IDEA
|
Hi, I don't know if this fits with your needs but you can import MVT data with a script tool, here is the source from an example. In my case the MVT data is on disk but it looks like the driver supports a service. Note also in my case the tiles have the extension '.mvt' and not '.pbf' so you can edit that setting. # MVTImporter.py - Import mapBox vector tiles to GeoPackage
# coding: utf-8
# For ogr methods see: https://gdal.org/python/ and surf the osgeo.ogr module
import arcpy
import os
from osgeo import ogr
arcpy.env.overwriteOutput = True
# Get zoom level folder
zoomFolder = arcpy.GetParameterAsText(0)
# Copy each layer to a new GeoPackage
level = os.path.basename(zoomFolder)
outgpkgPath = os.path.join(zoomFolder,
'ZoomLevel{}.gpkg'.format(level))
srcName = 'ZoomLevel{}GPKG'.format(level)
mvtDriver = ogr.GetDriverByName('MVT')
mvtDriver.SetMetadataItem('TILE_EXTENSION','mvt')
mvtDataSource = mvtDriver.Open(zoomFolder)
gpkgDriver = ogr.GetDriverByName('GPKG')
gpkgDataSource=gpkgDriver.CreateDataSource(outgpkgPath)
for i in range(mvtDataSource.GetLayerCount()):
name = mvtDataSource.GetLayerByIndex(i).GetName()
arcpy.AddMessage('Copying layer {}'.format(name))
gpkgDataSource.CopyLayer(mvtDataSource.GetLayer(name),
name,
['OVERWRITE=YES'])
gpkgDataSource.FlushCache()
gpkgDataSource.SyncToDisk()
gpkgDataSource.Destroy()
mvtDataSource.Destroy()
# Set output parameter
arcpy.SetParameter(1,outgpkgPath)
arcpy.AddMessage('Done')
... View more
12-13-2019
06:24 AM
|
3
|
0
|
4415
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | a week ago | |
| 1 | a week ago | |
| 4 | 05-28-2026 05:58 AM | |
| 1 | 05-15-2026 06:54 AM |
| Online Status |
Offline
|
| Date Last Visited |
11 hours ago
|