GEOG 2500 Web Browsing

GEOG 2500 – Fall 2024

Lab 1: Web Browsing & Introduction to ESRI Web Training

Objectives:

•    Become familiar with the www to learn about GIS and to access Geographic Data

•    Locate websites that can be useful in your GIS world

•   Give a brief introduction to ArcGIS Pro and the ESRI Web Training system

Instructions:

You will be submitting your completed homework to us through HuskyCT. We suggest using  Microsoft Word to type the answers while you are completing the exercises.  Save all of your coursework and labs through one of the three methods we have outlined for you in the file saving instructions document titled “ Best File Management Practices” . All homework documents must be submitted as PDF documents.

GIS on the Internet:

Using a web browser, accesshttp://www.gis.comand browse this site.  Answer Questions 1 below. Please browse thoroughly through this site. It has plenty of information about GIS, its history, and applications. Please, answer the following question in your own words (do not simply cut and paste text).

Question 1: On the main What is GIS page, the site lists five ways in which GIS is used (see graphic below). What are these five items?  Visit two of the tabs associated with these items and briefly summarize the GIS use demonstrated.

Now, gotohttps://doc.arcgis.com/en/arcgis-storymaps/gallery/to explore the large gallery of story maps created in ArcGIS. Visit four (or more) of the story maps. If possible, pick entries related to your major or of interest to you. Now, answer Question 2 below.

Question 2: List and give a brief description of four story maps you selected.

GIS Data on the Internet:

Access at least four of the following websites and answer the questions below.

ESRI Data

https://livingatlas.arcgis.com/en/home/

Connecticut Department of Energy & Environmental Protection GIS Data

www.ct.gov/deep/gisdata

Kentucky Division of Geographic Information

http://technology.ky.gov/gis

Map and Geographic Information Center (MAGIC) - University of Connecticut

http://magic.lib.uconn.edu

Massachusetts Bureau of Geographic Information (MASSGIS)

http://www.mass.gov/mgis

Ohio Geographically Referenced Information Program (OGRIP)

http://ogrip.oit.ohio.gov

United States Environmental Protection Agency

https://www.epa.gov/geospatial/epa-geospatial-data

Unites States Geological Survey

http://eros.usgs.gov

The National Map

http://nationalmap.gov

United States Census Bureau

http://www.census.gov

The Center for International Earth Science Information Network

http://www.ciesin.org

Answer the following questions:

Question 3: What institution is responsiblefor each one of the four sites you selected? Give a description of what this institution does.  Try not to be too general.

Question 4: List and describe the data found on two sites you selected and give potential applications of the data.

Question 5: Find two other sites that are of interest to you and related to GIS. What are   these sites (please give URLs) and what information/data do they have on them?  [If you have difficulty, just Google “GIS”.  You will get plenty of hits.]

Introduction to ESRI Web Training

During the semester, you will be using the ESRI Web Training.  You should have received an email from ESRI inviting you to join the UConn ArcGIS Online Organization (AGOL). It should appear similar to the image below. Once you login, you can take any of the web training courses offered athttps://www.esri.com/training. It is important to pay attention to exactly  which online training course is assigned each time we are tasked to complete these modules. The web training courses are useful in linking theoretical material covered in lecture and practical applications in ArcGIS.

The first link takes you to a document with stepson how to loginto the ESRI portal using your UConn Net ID and password.

1.   To begin, access the following website in your web browser, https://www.arcgis.com/home/index.html.

2.   Next, follow steps 1-3 provided inhttp://s.uconn.edu/agol-loginto login. Note that the most common problem is not selecting to use Your ArcGIS Organization’s URL to login.

3.   If you are successful, you should see a screen similar to the one below. 

4.   While here, you should follow instructions inhttp://s.uconn.edu/arcproto download ArcGIS Pro from ArcGIS Online.

Accessing ESRI  Web  Training Modules

Using a web browser, accesshttp://www.esri.com/training. Note: if you do not see a checkmark on the profile icon in the upper right corner of the window (like in the window below), then you   need to login. Click that icon and sign in the same way we did before. Remember, our ArcGIS Online Organization is named connecticut.maps.arcgis.com.

You should have also received an email from GISTraining@esri.com requesting you enroll in the   GEOG 2500 [UConn - Fall 2024] learning plan on the ESRI Training website. This is a learning plan we setup specifically for GEOG 2500.

Click on View learning plan assignment in the email. You will be redirected to the assignment acceptance page. Check the box and click to Enroll. You should see the confirmation window below.

Click on the GEOG 2500 learning plan.  If it is not on the screen, you can find it under My Academy and then My Learning Plans

The second half of your exercise is to complete the ArcGIS Pro Basics tutorial.

Lab Grading and Points

This exercise is worth 100 points, here is the grading breakdown for the assignment:

•   (35 points) Questions 1-5 from above.

•   (65 points) ArcGIS Pro Basics tutorial.  The web tutorial points are based on the successful completion of the entire tutorial.  To show me that you were able to complete the tutorial, we ask that you take a screenshot of the full screen showing ArcGIS Pro and the two linked (2D and 3D) displays. This should be similar to the screenshot below. Make sure your screen capture is of decent enough quality so we can see the details (so you get credit for your work). Note: We should be able to seeyour name in the screenshot

(showing that you are logged into ArcGIS Pro).

Please submit your assignment as a PDF file.  Please DO NOT send word documents.  In MS

Word, use the Save As function to save your document as a PDF file.  Proper naming of your file helps me keep track of your assignments (e.g., Lab1_Wanyama.pdf).

Submit your answers by midnight on Friday September 13th  on HuskyCT

本指南详细阐述基于Python编程语言结合OpenCV计算机视觉库构建实时眼部状态分析系统的技术流程。该系统能够准确识别眼部区域,并对眨眼动作与持续闭眼状态进行判别。OpenCV作为功能强大的图像处理工具库,配合Python简洁的语法特性与丰富的第三方模块支持,为开发此类视觉应用提供了理想环境。 在环境配置阶段,除基础Python运行环境外,还需安装OpenCV核心模块与dlib机器学习库。dlib库内置的HOG(方向梯度直方图)特征检测算法在面部特征定位方面表现卓越。 技术实现包含以下关键环节: - 面部区域检测:采用预训练的Haar级联分类器或HOG特征检测器完成初始人脸定位,为后续眼部分析建立基础坐标系 - 眼部精确定位:基于已识别的人脸区域,运用dlib提供的面部特征点预测模型准确标定双眼位置坐标 - 眼睑轮廓分析:通过OpenCV的轮廓提取算法精确勾勒眼睑边缘形态,为状态判别提供几何特征依据 - 眨眼动作识别:通过连续帧序列分析眼睑开合度变化,建立动态阈值模型判断瞬时闭合动作 - 持续闭眼检测:设定更严格的状态持续时间与闭合程度双重标准,准确识别长时间闭眼行为 - 实时处理架构:构建视频流处理管线,通过帧捕获、特征分析、状态判断的循环流程实现实时监控 完整的技术文档应包含模块化代码实现、依赖库安装指引、参数调优指南及常见问题解决方案。示例代码需具备完整的错误处理机制与性能优化建议,涵盖图像预处理、光照补偿等实际应用中的关键技术点。 掌握该技术体系不仅有助于深入理解计算机视觉原理,更为疲劳驾驶预警、医疗监护等实际应用场景提供了可靠的技术基础。后续优化方向可包括多模态特征融合、深度学习模型集成等进阶研究领域。 资源来源于网络分享,仅用于学习交流使用,请勿用于商业,如有侵权请联系我删除!
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值