POST
|
You could of said how to do it instead of being rude, especially since so many novices are in here to learn. As a work-around the advice worked, but you are right you can edit from the mxd. I figured out how to edit from the .mxd by going outside of Geonet, where people teach instead of scold, and corrected my response. Feel free to instruct us in better ways to perform our tasks, but toss the tone. So, I suggest you delete your delete comment and remember who the audience is, people who need help and novices.
... View more
11-13-2018
08:37 AM
|
3
|
0
|
2783
|
POST
|
You can edit from the MXD, but it is easier to use ArcCatalog to edit especially if your mxd takes forever to load. In the MXD you have to insert the model as a tool, assuming you saved it for later in a tool box. Right Click the tool you inserted and select edit. If there is an easier way to edit from the mxd I am all ears.
... View more
11-05-2018
12:52 PM
|
0
|
0
|
2783
|
POST
|
vocab. [vocab.] ABBREVIATION vocabulary. So, yeah, no it is an abbreviation.
... View more
11-01-2018
06:25 AM
|
0
|
0
|
2937
|
POST
|
I know we use it for Bonding, Insurance calculations, and claims.
... View more
11-01-2018
06:22 AM
|
0
|
0
|
1191
|
POST
|
I placed it inside my GDR_DailyRun.py script and it interfaces well. You do not need to write a separate OS script, and it gives the user physical file to open. Hope it is helpful.
... View more
10-18-2018
09:16 AM
|
1
|
0
|
3053
|
POST
|
I am about to launch a field collection app and I wanted to control the QAQC of the entries. So I wanted a day by day reminder to edit the collectors. I made my selections and excel sheet, but wanted it to come in my inbox. My IT came up with this for me... # -*- coding: utf-8 -*-
# ---------------------------------------------------------------------------
#
# Created on: 2018-10-16
# By: Joe Simmons
# Description: Sample script to send an email with and MS Excel attachment.
#
# ---------------------------------------------------------------------------
##print ("Beginning Excel to Email")
## Send the mail
import smtplib, os.path as op, base64, mimetypes
from email.mime.multipart import MIMEMultipart
from email.mime.base import MIMEBase
from email.mime.text import MIMEText
from email.utils import formatdate
from email import encoders
## Process: Excel To Email
server = "YOUR SERVER"
sent_from = "YOUR EMAIL"
sent_to = ["DISTRIBUTION LIST OR EMAIL"] # must be a list
subject = "Craig's Daily Edits"
text = 'Please see attached.'
path = ('C:/Users/jsimmons/Documents/Dump/') # Change to point to your directory.
send_filename = 'test.xlsx' # The name of your file.
## Use MIMEMultipart to build email
msg = MIMEMultipart()
msg['From'] = sent_from
msg['To'] = "THEIR EMAIL"
msg['Date'] = formatdate(localtime = True)
msg['Subject'] = subject
## Add Message Text
message = MIMEBase('text', 'plain')
message.set_payload(text)
encoders.encode_base64(message)
msg.attach(message)
## Add attachment
fp = open(path + send_filename, 'rb')
attachment = MIMEBase('application','vnd.openxmlformats-officedocument.spreadsheetml.sheet') #Use theis for .xlsx files
#attachment = MIMEBase('application','vnd.ms-excel') #Use theis for .xls files
attachment.set_payload(fp.read())
fp.close()
encoders.encode_base64(attachment)
attachment.add_header('Content-Disposition', 'attachment', filename=send_filename)
msg.attach(attachment)
server = smtplib.SMTP(server)
server.ehlo()
server.starttls()
server.sendmail(sent_from, sent_to, msg.as_string())
server.quit()
# Confirmation
print ("Your Report for QAQC has been emailed.")
... View more
10-18-2018
09:09 AM
|
1
|
1
|
3053
|
BLOG
|
This I looking forward to and I need to get back into training mode, at least an hour a week. How much training is enough to keep you current would be a good question?
... View more
06-26-2018
06:20 AM
|
0
|
0
|
2521
|
POST
|
No, because it keeps "newbs" from destroying others good work.
... View more
06-12-2018
11:43 AM
|
0
|
0
|
291
|
BLOG
|
06-12-2018
05:52 AM
|
1
|
0
|
686
|
POST
|
I went back and check the week we had are snafu. We also lost the pictures. They were also not on the phone and the only record they had even been there was in the sent folder there was a file name. They never showed up in ESRIonline, nor were they in any folder on the phone. We also lost our survey data, but we were able to transcribe our data from the sent folder. The Surveys sent, but never arrived. Moral of the story? DO NOT UPDATE your survey questions without having all the devices in use download their surveys first. When you switch network providers on a device, make sure the user reloads the current Survey, before proceeding. Don't publish a new Survey with out verifying all surveys have been collected from all devices. Hopefully nobody else makes our mistakes.
... View more
04-05-2018
05:17 AM
|
1
|
0
|
1915
|
POST
|
As a general rule we don't edit the survey while collection in ongoing. I have seen this problem when the cell phone in question switched networks. It was switched from Verizon to T-Mobile. We had to pull down the photos off of the phone manually, and what saved us as we change the .jpg name before we save or send so we don't have to do that back at the office. Our photos were saved that way, but we lost the actual surveys, and had to collect the data manually out of the sent folder in the app and transcribed that weeks data by hand. Once the survey was deleted and reloaded on the phone we haven't had an issue since. Somehow the Survey123 knows something changed on the phone and didn't allow it to share that data.
... View more
03-26-2018
05:49 AM
|
0
|
4
|
1915
|
IDEA
|
Be careful when only using ZIP code areas.... Here is one example," How zip codes hid the water crisis in Flint | Michigan Radio "
... View more
12-14-2017
01:57 PM
|
2
|
0
|
630
|
BLOG
|
Shouldn't the POPUP ask us these questions? When it happens your boss is inevitably over your shoulder asking for obscure piece of info and you need to reboot immediately to get an answer to a County Commissioner. The popup is not user friendly, nor does it seem to ask for half of what you say in "required" for e response.
... View more
11-30-2017
08:46 AM
|
0
|
0
|
1431
|
POST
|
11-17-2017
09:30 AM
|
2
|
1
|
2992
|
POST
|
Yes, indeed, but when the boss comes asking it is quick. Get Outlook for Android<https://aka.ms/ghei36>
... View more
11-14-2017
07:10 AM
|
0
|
0
|
1001
|
Title | Kudos | Posted |
---|---|---|
1 | 10-18-2018 09:09 AM | |
1 | 10-18-2018 09:16 AM | |
3 | 11-13-2018 08:37 AM | |
1 | 06-12-2018 05:52 AM | |
1 | 04-05-2018 05:17 AM |
Online Status |
Offline
|
Date Last Visited |
08-30-2024
05:48 PM
|