Program National Agriculture Imagery Program (NAIP) pozyskuje zdjęcia lotnicze w okresie wegetacyjnym w Stanach Zjednoczonych kontynentalnych.
Projekty NAIP są realizowane co roku w zależności od dostępnych środków i cyklu pozyskiwania zdjęć. Od 2003 r. zdjęcia NAIP były pozyskiwane w 5-letnim cyklu. Rok 2008 był rokiem przejściowym, a w 2009 r. rozpoczął się trzyletni cykl.
Zdjęcia NAIP są wykonywane z odległości 1 metra od powierzchni ziemi (GSD) z dokładnością poziomą w zakresie 6 metrów od punktów kontrolnych na ziemi, które można zidentyfikować na zdjęciach i które są używane podczas sprawdzania obrazów.
Starsze zdjęcia były zbierane przy użyciu 3 pasm (czerwonego, zielonego i niebieskiego: RGB), ale nowsze zdjęcia są zwykle zbierane z dodatkowym pasmem bliskiej podczerwieni (RGBN). Identyfikatory zasobów RGB zaczynają się od „n”, identyfikatory zasobów NRG zaczynają się od „c”, a identyfikatory zasobów RGBN zaczynają się od „m_”.
Niektóre starsze zdjęcia mają GSD wynoszący 2 metry.
Pasma
Rozmiar piksela 0,6 m
Pasma
Nazwa
Jednostki
Rozmiar piksela
Opis
R
dn
metry
Czerwony
G
dn
metry
Zielony
B
dn
metry
Niebieski
N
dn
metry
Bliska podczerwień
Warunki korzystania z usługi
Warunki korzystania z usługi
Większość informacji prezentowanych na stronie internetowej FSA jest uważana za informacje należące do domeny publicznej. Informacje z domeny publicznej można swobodnie rozpowszechniać i kopiować, ale prosimy o podawanie odpowiednich informacji o autorze, zdjęciu lub obrazie. Więcej informacji znajdziesz na stronie Zasady i linki FSA.
Użytkownicy powinni podać źródło danych: USDA Farm Production and Conservation -
Business Center, Geospatial Enterprise Operations, gdy używają lub
rozpowszechniają ten zbiór danych.
Cytaty
Cytowania:
USDA Farm Production and Conservation - Business Center, Geospatial Enterprise Operations
Program National Agriculture Imagery Program (NAIP) pozyskuje zdjęcia lotnicze w okresie wegetacyjnym w Stanach Zjednoczonych kontynentalnych. Projekty NAIP są realizowane co roku w zależności od dostępnych środków i cyklu pozyskiwania zdjęć. Od 2003 r. zdjęcia NAIP były pozyskiwane w 5-letnim cyklu. Rok 2008 był rokiem przejściowym i …
[null,null,[],[[["\u003cp\u003eThe National Agriculture Imagery Program (NAIP) provides high-resolution aerial imagery of the continental U.S. during agricultural growing seasons.\u003c/p\u003e\n"],["\u003cp\u003eImagery is acquired at a one-meter ground sample distance (GSD) with a horizontal accuracy within six meters of ground control points.\u003c/p\u003e\n"],["\u003cp\u003eNAIP imagery is available from 2002 to 2023 and includes 3-band (RGB) and 4-band (RGBN) options, with some older images having a 2-meter GSD.\u003c/p\u003e\n"],["\u003cp\u003eThe dataset is provided by the USDA Farm Production and Conservation - Business Center, Geospatial Enterprise Operations, and is considered public domain information.\u003c/p\u003e\n"],["\u003cp\u003eUsers can access and analyze NAIP imagery using the Google Earth Engine platform.\u003c/p\u003e\n"]]],[],null,["# NAIP: National Agriculture Imagery Program\n\nDataset Availability\n: 2002-06-15T00:00:00Z--2023-11-17T00:00:00Z\n\nDataset Provider\n:\n\n\n [USDA Farm Production and Conservation - Business Center, Geospatial Enterprise Operations](https://naip-usdaonline.hub.arcgis.com/)\n\nTags\n:\n [agriculture](/earth-engine/datasets/tags/agriculture) [highres](/earth-engine/datasets/tags/highres) [imagery](/earth-engine/datasets/tags/imagery) [orthophotos](/earth-engine/datasets/tags/orthophotos) [usda](/earth-engine/datasets/tags/usda) \n aerial \n fpac \nnaip \n\n#### Description\n\nThe National Agriculture Imagery Program (NAIP) acquires aerial imagery\nduring the agricultural growing seasons in the continental U.S.\n\nNAIP projects are contracted each year based upon available funding and the\nimagery acquisition cycle. Beginning in 2003, NAIP was acquired on\na 5-year cycle. 2008 was a transition year, and a three-year cycle began\nin 2009.\n\nNAIP imagery is acquired at a one-meter ground sample distance (GSD) with a\nhorizontal accuracy that matches within six meters of photo-identifiable\nground control points, which are used during image inspection.\n\nOlder images were collected using 3 bands (Red, Green, and Blue: RGB), but\nnewer imagery is usually collected with an additional near-infrared band\n(RGBN). RGB asset ids begin with 'n*', NRG asset ids begin with 'c*', RGBN\nasset ids begin with 'm_'.\n\nSome older images have GSD of 2 meters.\n\n### Bands\n\n\n**Pixel Size**\n\n0.6 meters\n\n**Bands**\n\n| Name | Units | Pixel Size | Description |\n|------|-------|------------|---------------|\n| `R` | dn | meters | Red |\n| `G` | dn | meters | Green |\n| `B` | dn | meters | Blue |\n| `N` | dn | meters | Near infrared |\n\n### Terms of Use\n\n**Terms of Use**\n\nMost information presented on the FSA Web site is considered public domain\ninformation. Public domain information may be freely distributed or copied,\nbut use of appropriate byline/photo/image credits is requested. For more\ninformation visit the\n[FSA Policies and Links](https://www.fsa.usda.gov/help/policies-and-links)\nwebsite.\n\nUsers should acknowledge USDA Farm Production and Conservation -\nBusiness Center, Geospatial Enterprise Operations when using or\ndistributing this data set.\n\n### Citations\n\nCitations:\n\n- USDA Farm Production and Conservation - Business Center, Geospatial Enterprise Operations\n\n### Explore with Earth Engine\n\n| **Important:** Earth Engine is a platform for petabyte-scale scientific analysis and visualization of geospatial datasets, both for public benefit and for business and government users. Earth Engine is free to use for research, education, and nonprofit use. To get started, please [register for Earth Engine access.](https://console.cloud.google.com/earth-engine)\n\n### Code Editor (JavaScript)\n\n```javascript\nvar dataset = ee.ImageCollection('USDA/NAIP/DOQQ')\n .filter(ee.Filter.date('2017-01-01', '2018-12-31'));\nvar trueColor = dataset.select(['R', 'G', 'B']);\nvar trueColorVis = {\n min: 0,\n max: 255,\n};\nMap.setCenter(-73.9958, 40.7278, 15);\nMap.addLayer(trueColor, trueColorVis, 'True Color');\n```\n[Open in Code Editor](https://code.earthengine.google.com/?scriptPath=Examples:Datasets/USDA/USDA_NAIP_DOQQ) \n[NAIP: National Agriculture Imagery Program](/earth-engine/datasets/catalog/USDA_NAIP_DOQQ) \nThe National Agriculture Imagery Program (NAIP) acquires aerial imagery during the agricultural growing seasons in the continental U.S. NAIP projects are contracted each year based upon available funding and the imagery acquisition cycle. Beginning in 2003, NAIP was acquired on a 5-year cycle. 2008 was a transition year, and a ... \nUSDA/NAIP/DOQQ, agriculture,highres,imagery,orthophotos,usda \n2002-06-15T00:00:00Z/2023-11-17T00:00:00Z \n24.42 -124.84 49.72 -64.82 \nGoogle Earth Engine \nhttps://developers.google.com/earth-engine/datasets\n\n- [](https://doi.org/https://naip-usdaonline.hub.arcgis.com/)\n- [](https://doi.org/https://developers.google.com/earth-engine/datasets/catalog/USDA_NAIP_DOQQ)"]]