Hướng dẫn dùng gis google earth 2918 năm 2024

Tải Format mẫu trình bày khóa luận/ tiểu luận tốt nghiệp cho ngành GIS năm 2017 Xem video hướng dẫn trình bày:

Show

    ArcGoogle

    Tải tập tin cài đặt, thuốc cho FME Desktop 2013 SP3 Tập tin cài đặt Thuốc Trình tự cài đặt FME Desktop 2013 SP3 1. Cài đặt fme_install.exe 2. Cài đặt SafeFLEXlmInstaller.msi (nếu có lỗi, đừng để ý) 3. Chạy licgen.exe và lưu safe.lic vào thư mục C:\Program Files\FlexServer\ 4. Chạy C:\Program Files\FlexServer\BatchFiles\restartService.bat 5. Chạy FME Licensing…

    Tải bộ cài đặt Mapsource tại đây: https://www.mediafire.com/folder/p7rpdb1px51pt/Mapsource Chi tiết cách cài đặt xem tại đây:

    Download phần mềm Google Earth: http://www.google.com/earth/download/ge/agree.html Sách tham khảo về Google Maps, Google Earth: Google Earth For Dummies Hacking Google Maps and Google Earth Introduction to 3D Data- Modeling with ArcGIS 3D Analyst and Google Earth The Coastlines of the World with Google Earth

    Download các phần mềm: – Tải MapInfo 12: https://drive.google.com/file/d/0B170FYlDExdzb3ZQS0NSbk1CQm8/view?usp=sharing – Tải MapInfo Professional 12.0.2 Maintenance Release: https://drive.google.com/file/d/0B170FYlDExdzUkZjUC1Xc0t0Vmc/view?usp=sharing – Tải thuốc MapInfo 12: https://drive.google.com/file/d/0B170FYlDExdzMmxMYVNzMWFkZFU/view?usp=sharing Trình tự cài đặt xem chi tiết tại đây:

    Tải bộ cài đặt ArcView 3.3 tại đây: http://www.mediafire.com/download/9duv0fdn216303d/ArcView3_3_full.rar Chi tiết cách cài đặt ArcView 3.3 trên Window XP/Vista/7/8 32bits, 64bits xem tại đây:

    This introductory training is part of the official training materials prepared by the United States Department of Agriculture.

    Code Editor cho phép người dùng thực hiện được tất cả các chức năng của Earth Engine, tuy nhiên, cần có hiểu biết cơ bản về lập trình và JavaScript. Trong bài tập này, chúng ta sẽ tiếp tục học về ngôn ngữ lập trình Java và các khái niệm mới về dữ liệu không gian trong Earth Engine. Bạn sẽ tiếp tục những gì được học ở bài tập 2 về đối tượng ảnh; tuy nhiên trong bài học này bạn sẽ tập trung nhiều hơn vào các tập hợp hoặc chồng lớp của các đối tượng ảnh có tính chất tương tự. Trong bài học này, bạn sẽ tập trung vào các khái niệm cơ bản và phương pháp liên quan đến các tập hợp ảnh trong Earth Engine. Đây là hướng dẫn giúp người sử dụng có thể viết được các sript đơn giản trong JavaScript.

    Một tập hợp ảnh là một nhóm các ảnh cùng loại trong Earth Engine. Ví dụ như, tất cả ảnh Landsat 8 trong GEE là một tập hợp ảnh Trong Code Editor, bạn có thể làm việc với toàn bộ tập hợp ảnh ở một dạng nhất định, hoặc bạn có thể sử dụng các bộ lọc để tạo ra một tập ảnh cụ thể (ví dụ như để thể hiện khu vực nhiên cứu của bạn hoặc cho một khoảng thời gian cụ thể). Đọc thêm tại https://developers.google.com/earth-engine/ic_info

    1. Mở một Script mới

    1. Mở trang web Code Editor trong Google Chrome https://code.earthengine.google.com/

    2. Click vào biểu tượng đầu mũi tên cạnh nút Reset và chọn Clear script.

    1. Tạo một tập hợp đối tượng ảnh Landsat 1. Tạo một tập hợp các ảnh Landsat 8 có sẵn bằng cách gõ hoặc copy/paste dòng code sau vào code editor

    // Get a collection. var L8_collection = ee.ImageCollection('LANDSAT/LC8_L1T_TOA');

    2. Tiếp theo chúng ta sẽ hiển thih nó trên cửa sổ bản đồ, copy code dưới đây và paste vào code editor. Sau đó click Run để thực hiện toàn bộ các dòng lệnh.

    Map.addLayer(L8_collection, { min:0.05, max: 0.8, bands: 'B6, B5, B4' }, 'Landsat Collection'); Map.setCenter(100.56, 13.94, 7);

    1. Bạn thấy gì trên cửa sổ bản đồ? Tập ảnh gồm nhiều ảnh, nhưng không phải tất cả đều được hiện lên. Khi chúng ta sử dụng hàm Map.addLayer để đưa một tập ảnh vào cửa sổ bản đồ, theo mặc định/default chỉ các pixel mới nhất sẽ được hiển thị

    2. (Không bắt buộc) Nếu bạn thêm vào dòng lệnh print/in, bạn có thể xác định có bao nhiêu ảnh ở trong tập hợp. Copy và paste dòng sau vào dưới phần script của mình

    print(L8_collection);

    1. Tuy nhiên, vì tập ảnh của chúng ta tương đối lớn, chúng ta nhận được báo lỗi trên Console “Collection query aborted after accumulating the metadata for over 5,000 elements”. Có nghĩa là yêu cầu in tập ảnh không thực hiện được khi gom toàn bộ siêu dữ liệu của hơn 5,000 đối tượng ảnh. Chúng ta sẽ lọc tập ảnh theo không gian hoặc thời gan và tìm cách khác để có số lượng ảnh phù hợp trong tập ảnh cần cho việc sử dụng.

    In April 2017, Google Earth on Web was released, which puts Earth in the browser. However, for this tutorial, you will need Google Earth Pro for Desktop installed on your computer. Download the latest version here.

    Let's Get Started!

    1. Open Google Earth Pro.
    2. Download the following datasets for use in this exercise: Rivers_in_SEAsia_shapefile.zip and LandCover_in_SEAsia_grid.zip to your computer. Unzip both files into a folder on your computer.

    Import a GIS shapefile, or other vector dataset

    1. Select Import... from the File menu.
      Hướng dẫn dùng gis google earth 2918 năm 2024
    2. Select your data's file type from the Files of type menu. For this example, choose _ESRI Shape (.shp)_ from the file type menu, select Rivers_in_Southeast_Asia.shp, and click Open*. If you have MapInfo .tab data, choose _MapInfo (.tab) from the _Files of type menu, select your TAB file and click Open*.
      Hướng dẫn dùng gis google earth 2918 năm 2024
    3. A message will appear, stating that the file contains more than 2500 features and could cause application performance degradation.
    4. When you see this message, you can choose to import just a sample, restrict to your current view, or import all.
      Hướng dẫn dùng gis google earth 2918 năm 2024
    5. Click the Import all button.
    6. A message will appear, asking if you would like to create a Style Template. Click Yes.
      Hướng dẫn dùng gis google earth 2918 năm 2024
    7. In the next Style Template Settings dialogue box, you will create a style template for the rivers, which will include colours, labels and icons.
    8. Under the Name tab, choose the field in the shapefile that you would like to use for the name labels for the data in Google Earth. You can use the preview table to view which field contains the content you would like to use for the labels. For this example, select 'NAM' in the drop-down menu. This is the field in the shapefile that contains the names of the rivers.
      Hướng dẫn dùng gis google earth 2918 năm 2024
    9. Under the Colour tab, select to Use single colour, and click on the colour swatch to the right. This causes the colour settings to appear.
    10. In the Select Color dialogue box, choose a colour for the river dataset. For this example, select a blue colour and click OK.
      Hướng dẫn dùng gis google earth 2918 năm 2024
    11. Under the Height tab, keep Clamp features to ground selected. This will keep the rivers clamped to the ground, following the terrain.
    12. Click OK to finish your style.
    13. A dialogue box will appear, asking if you would like to save the style template that you just created. If you wish to save it for future use, click Save. Otherwise, click Cancel. For this example, click Save.
      Hướng dẫn dùng gis google earth 2918 năm 2024
    14. Your GIS data has been converted to KML, and the data now appears in Google Earth. Notice how the KML is also listed in the Places panel under your Temporary Places folder. To save it in Google Earth for future sessions, select and drag this file to your My Places folder before closing Google Earth.
      Hướng dẫn dùng gis google earth 2918 năm 2024
    15. Once you have imported your vector dataset, you can optimise your file to limit the number of points displayed at higher altitudes, by using the Regionate tool, and following these steps: – Save your imported vector dataset as a KML, then choose Regionate under the Tools menu. – For the Input file, browse for your saved KML file. Then choose an Output folder where you want to save the regionated files. – Tick 'Open regionated files when done' and click Regionate. Now, as you zoom in, you'll see increasingly more points.

    Import GeoTIFF, or other raster dataset

    1. To import a raster dataset, select Import... from the File menu. Select the appropriate file format from the file type menu at the bottom, select the file you want to import, and click Open. For this example, select file type _GeoTIFF (.tif)_, select the LandCover_SEAsia.tif file, and click Open*.
      Hướng dẫn dùng gis google earth 2918 năm 2024
    2. If your imported image is larger than the maximum size supported by the hardware, you will be given several choices: – Click Create Super Overlay... to import large images and have them automatically split into tiles and scaled according to your zoom level. – Click Scale to rescale to the maximum size supported. – Click Crop to view only a full resolution subset of the image. For this tutorial, choose Scale to import a single, slightly lower resolution image.
      Hướng dẫn dùng gis google earth 2918 năm 2024
    3. In the New Image Overlay dialogue box that appears, give your image overlay a name and then click OK.
      Hướng dẫn dùng gis google earth 2918 năm 2024
    4. Because the raster dataset in georeferenced to a coordinate system, it is automatically placed in the appropriate location. The land cover GeoTIFF has been imported into Google Earth and is located in the Places panel.
      Hướng dẫn dùng gis google earth 2918 năm 2024

    In addition to importing GIS data into Google Earth Pro, you can also use many other tools and software programs to convert GIS data to KML files for use in Google Earth. GIS software, like QGIS, ESRI ArcGIS and MapInfo, have tools to export GIS data into KML format for use in Google Earth.

    • QGIS, the open source GIS software has several KML related tools and plugins.
    • ESRI ArcGIS contains tools in the ArcToolbox (Conversion Tools > To KML) for converting vector and raster GIS data to KML.
    • MapInfo Professional has a MapInfos Professional Google Earth Link Utility.
    • ogr2gui, a utility that converts many formats, including shapefiles to KML.

    Discussion and Feedback

    Have questions about this tutorial? Want to give us some feedback? Visit the Google Earth Help Community to discuss it with others.