|
POST
|
Hey Callum, I didn't figure out a solution on this. This project has been postponed for awhile.
... View more
10-26-2017
01:31 PM
|
0
|
0
|
1438
|
|
POST
|
Let me first say I'm new to geoevent... I've been trying to poll a website for JSON but I keep getting a "handshake alet: unrecognized_name". I'm not sure what that is. Can anyone help?
... View more
08-03-2017
01:51 PM
|
0
|
0
|
744
|
|
BLOG
|
We are receiving data from an AVL system which uses NMEA messaging. We also have a reverse proxy in the DMZ for security reasons. How do we send NMEA messages through the reverse proxy to Geoevent? We're thinking of adding gpsgate to our reverse proxy to act as a listener to send the information through the firewall to geoevent. Does this sound like a good option or is there a better way of doing this? Thanks.
... View more
06-05-2017
08:26 AM
|
0
|
0
|
3747
|
|
POST
|
Hey guys, we're trying to setup a connection for our avl units to geoevent. The issue we have is getting the information through the reverse proxy to our internal server. Our avl's will transmit NMEA and TAIP messaging. How do you send the data through the reverse proxy? Do we need a listener for NMEA or TAIP? Any help would be great. Thanks!
... View more
06-02-2017
01:47 PM
|
0
|
0
|
862
|
|
POST
|
A few weeks ago I added Trimble's TAIP 10.4 adapter to Geoevent. Yesterday I logged in and the inputs showed an error saying the adapter was missing. I checked and sure enough the adapter no longer showed as added. I tried to add it again and it says it was added successfully but the input connectors still wouldn't work and the adapter doesn't show in the adapter list. Anyone have an idea on what's wrong? We're running Geoevent 10.5 Thanks.
... View more
06-01-2017
07:56 AM
|
0
|
3
|
1664
|
|
POST
|
Does anyone have any experience connecting a Sierra Wireless MG90 to Geoevnet? We are needing some help with the Sierra Wireless software configuration. We've been looking through the TAIP and the RAP tutorial but we're not sure how to translate everything over to the MG90 modem. Any help would be great. Thanks.
... View more
05-23-2017
10:36 AM
|
0
|
0
|
1030
|
|
POST
|
Hey guys, I'm new to geoevent and would appreciate some help. I'm trying to update a related table's attributes with information from the related feature class when a new record is created in the related table. I'm not sure if this would be a good application for geoevent or if I need to think of a workaround. Any help or thoughts would be great. Thanks.
... View more
03-06-2017
07:38 AM
|
0
|
4
|
2336
|
|
POST
|
I've noticed a lot of people having this problem so I assume it is a bug in the software. I'm not very savvy with python or model builder but I was able to create a workaround with the following model... Basically, my report would run on 17 or less records (with images) so I created this crazy loop. It creates three pdf's and then appends them all into one pdf and deletes the old ones. The parameter is a year entered by the user to use in the expression for the first select in each line, the second select in each line creates a subset selection using a facility ID (wildcard) then a report is generated using an export report script. I know it's not pretty but it works and the result is pretty nice. I put this on here for those who might also want a work around.
... View more
03-01-2017
02:17 PM
|
1
|
0
|
1424
|
|
POST
|
I've noticed a few other people have commented on the same issue but I have yet to see an answer to the problem. When running a report with images from Arcmap using an rlf file, I always receive an out of memory error. The most records I can get to work at a given time is around 16-17. I need it to run on 40+. Is there anyway I can solve this issue? I'm currently running ExportReport as a python script to try and maximize any performance I can. Thanks for the help.
... View more
02-28-2017
09:09 AM
|
0
|
2
|
2367
|
|
POST
|
So, I finally got this bad boy to work. Thanks to both of you guys. Below is the script that worked but I had to run it as a python script with no parameters and in the foreground. On to figuring out the next few steps. Thanks again. import arcpy
mxd = arcpy.mapping.MapDocument(r"G:\Public\Storm Projects\NPDES II Permit\Detention Basin Inspections\NEW_Detention Basins.mxd")
df = arcpy.mapping.ListDataFrames(mxd, "Layers")[0]
lyr = arcpy.mapping.TableView ("ArcGISSDE.SDE.Detention_Basin_Inspection")
arcpy.mapping.ExportReport(lyr,
r"M:\BrianLomas\RelationShipClassTest\DetentionBasin1.rlf",
r"C:\Users\blomas\Desktop\ProjectReport.pdf")
del mxd
... View more
02-27-2017
02:18 PM
|
0
|
0
|
2381
|
|
POST
|
Yea, I wondered that. I added that script to a toolbox and ran it from there as suggested but I get the same error.
... View more
02-27-2017
02:03 PM
|
0
|
0
|
2381
|
|
POST
|
I'm trying to get it to just output a few pages because I haven't been able to get it to output anything. So, I was wondering if maybe it was an "out of memory" issue I was getting when I ran it from view\run report in arcmap. I was hoping to eventually build a script I can run on a handful of pages at a time because of the memory issue. Right now, the selection is built into the script... .... "SUBSET_SELECTION", "[Date]= '12/1/2015'")
... View more
02-27-2017
02:01 PM
|
0
|
1
|
2381
|
|
POST
|
yes, it's actually a related table if that makes a difference.
... View more
02-27-2017
01:16 PM
|
0
|
3
|
2381
|
|
POST
|
Hey guys, I working to get a report to run from a script and I can not figure out what I'm doing wrong. Any help you would have would be great. Thanks! import arcpy
mxd = arcpy.mapping.MapDocument(r"G:\Public\Storm Projects\NPDES II Permit\Detention Basin Inspections\NEW_Detention Basins.mxd")
df = arcpy.mapping.ListDataFrames(mxd, "Layers")[0]
lyr = arcpy.mapping.ListTableViews(mxd, "ArcGISSDE.SDE.Detention_Basin_Inspection", df)[0]
arcpy.SelectLayerByAttribute_management(lyr, "SUBSET_SELECTION", "[Date]= '12/1/2015'")
print ('Test')
arcpy.mapping.ExportReport(lyr,
r"M:\BrianLomas\RelationShipClassTest\DetentionBasin1.rlf",
r"C:\Users\blomas\Desktop\ReportTest.pdf",
"SELECTED")
del mxd
I currently get this error... Executing: Report Start Time: Mon Feb 27 13:47:32 2017 Running script Report... Failed script Report... Traceback (most recent call last): File "M:\BrianLomas\Python Scripts\ImportantScripts\SelectReport.py", line 10, in <module> "SELECTED") File "c:\program files (x86)\arcgis\desktop10.3\arcpy\arcpy\utils.py", line 182, in fn_ return fn(*args, **kw) File "c:\program files (x86)\arcgis\desktop10.3\arcpy\arcpy\mapping.py", line 532, in ExportReport return report_source._arc_object.ExportReport(*gp_fixargs((report_layout_file, output_file, dataset_option, report_title, starting_page_number, page_range, report_definition_query, extent, field_map), True)) IOError: Could not write output file from report Failed to execute (Report). Failed at Mon Feb 27 13:47:34 2017 (Elapsed Time: 1.90 seconds)
... View more
02-27-2017
11:47 AM
|
0
|
8
|
3311
|
|
POST
|
The way I solved this was... click on the empty page to view it's element properties then change the column number to 2. Now, I have two pictures side by side.
... View more
02-16-2017
07:20 AM
|
0
|
0
|
804
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-05-2025 08:13 AM | |
| 1 | 12-03-2025 06:58 AM | |
| 1 | 06-19-2018 08:41 AM | |
| 1 | 09-08-2020 06:22 AM | |
| 1 | 12-10-2015 09:24 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|