@vannizhang/living-atlas-content-validator 1.5.17 → 1.5.18-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1376 -162
- package/dist/configureSettings.d.ts +133 -0
- package/dist/configureSettings.js +61 -0
- package/dist/configureSettings.js.map +1 -0
- package/dist/data/TitleSummaryMatchingPatterns_Locations.json +829 -0
- package/dist/data/TitleSummaryMatchingPatterns_Sources.json +382 -0
- package/dist/data/TitleSummaryMatchingPatterns_Time.json +25 -0
- package/dist/data/TitleSummaryMatchingPatterns_Topics.json +1365 -0
- package/dist/data/TitleSummaryRejectedPatterns.json +44 -0
- package/dist/index.d.ts +27 -9
- package/dist/index.js +55 -9
- package/dist/index.js.map +1 -1
- package/dist/lib/accessInformation/isValidAccessInformation.js +4 -6
- package/dist/lib/accessInformation/isValidAccessInformation.js.map +1 -1
- package/dist/lib/checkProfanities/checkProfanities.d.ts +7 -0
- package/dist/lib/checkProfanities/checkProfanities.js +26 -0
- package/dist/lib/checkProfanities/checkProfanities.js.map +1 -0
- package/dist/lib/checkTitleAndSnippetSearchability/checkTitleAndSnippetSearchability.d.ts +34 -0
- package/dist/lib/{recommendedText/checkRecommendedText.js → checkTitleAndSnippetSearchability/checkTitleAndSnippetSearchability.js} +51 -25
- package/dist/lib/checkTitleAndSnippetSearchability/checkTitleAndSnippetSearchability.js.map +1 -0
- package/dist/lib/checkTitleAndSnippetSearchability/config.d.ts +97 -0
- package/dist/lib/checkTitleAndSnippetSearchability/config.js +41 -0
- package/dist/lib/checkTitleAndSnippetSearchability/config.js.map +1 -0
- package/dist/lib/checkTitleAndSnippetSearchability/data.d.ts +0 -0
- package/dist/lib/checkTitleAndSnippetSearchability/data.js +693 -0
- package/dist/lib/checkTitleAndSnippetSearchability/data.js.map +1 -0
- package/dist/lib/checkTitleAndSnippetSearchability/helpers.d.ts +117 -0
- package/dist/lib/checkTitleAndSnippetSearchability/helpers.js +241 -0
- package/dist/lib/checkTitleAndSnippetSearchability/helpers.js.map +1 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchDateTimeInfo.d.ts +34 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchDateTimeInfo.js +207 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchDateTimeInfo.js.map +1 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchLocationInfo.d.ts +34 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchLocationInfo.js +170 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchLocationInfo.js.map +1 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchSourceInfo.d.ts +34 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchSourceInfo.js +172 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchSourceInfo.js.map +1 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchTopicInfo.d.ts +36 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchTopicInfo.js +175 -0
- package/dist/lib/checkTitleAndSnippetSearchability/matchTopicInfo.js.map +1 -0
- package/dist/lib/checkTitleAndSnippetSearchability/scoringConfig.js.map +1 -0
- package/dist/lib/config.d.ts +4 -1
- package/dist/lib/config.js +5 -5
- package/dist/lib/config.js.map +1 -1
- package/dist/lib/deleteProtection/isDeleteProtectionEnabled.js +6 -2
- package/dist/lib/deleteProtection/isDeleteProtectionEnabled.js.map +1 -1
- package/dist/lib/deprecated/isDeprecated.js +5 -2
- package/dist/lib/deprecated/isDeprecated.js.map +1 -1
- package/dist/lib/description/isValidDescription.js +8 -5
- package/dist/lib/description/isValidDescription.js.map +1 -1
- package/dist/lib/licenseInfo/isValidLicenseInfo.js +5 -2
- package/dist/lib/licenseInfo/isValidLicenseInfo.js.map +1 -1
- package/dist/lib/sharing/isValidAccess.js +5 -2
- package/dist/lib/sharing/isValidAccess.js.map +1 -1
- package/dist/lib/ssl/isValidSSL.js +15 -6
- package/dist/lib/ssl/isValidSSL.js.map +1 -1
- package/dist/lib/summary/isValidSummary.js +6 -3
- package/dist/lib/summary/isValidSummary.js.map +1 -1
- package/dist/lib/tags/isValidTags.js +7 -3
- package/dist/lib/tags/isValidTags.js.map +1 -1
- package/dist/lib/thumbnail/isValidThumbnail.d.ts +6 -1
- package/dist/lib/thumbnail/isValidThumbnail.js +10 -7
- package/dist/lib/thumbnail/isValidThumbnail.js.map +1 -1
- package/dist/lib/title/isValidTitle.js +9 -3
- package/dist/lib/title/isValidTitle.js.map +1 -1
- package/dist/lib/userProfileDescription/isValidUserProfileDescription.js +44 -38
- package/dist/lib/userProfileDescription/isValidUserProfileDescription.js.map +1 -1
- package/dist/lib/userProfileName/isValidUserProfileName.js +8 -5
- package/dist/lib/userProfileName/isValidUserProfileName.js.map +1 -1
- package/dist/lib/userProfileThumbnail/isValidUserProfileThumbnail.js +6 -3
- package/dist/lib/userProfileThumbnail/isValidUserProfileThumbnail.js.map +1 -1
- package/dist/lib/util/containsNonEnglishCharacters.d.ts +13 -0
- package/dist/lib/util/containsNonEnglishCharacters.js +30 -0
- package/dist/lib/util/containsNonEnglishCharacters.js.map +1 -0
- package/dist/lib/util/countSentences.d.ts +23 -0
- package/dist/lib/util/countSentences.js +54 -0
- package/dist/lib/util/countSentences.js.map +1 -0
- package/dist/lib/util/createWordBoundaryRegex.d.ts +46 -0
- package/dist/lib/util/createWordBoundaryRegex.js +77 -0
- package/dist/lib/util/createWordBoundaryRegex.js.map +1 -0
- package/dist/lib/util/escapeSpecialCharacters.d.ts +7 -0
- package/dist/lib/util/escapeSpecialCharacters.js +22 -0
- package/dist/lib/util/escapeSpecialCharacters.js.map +1 -0
- package/dist/lib/util/getLivingAtlasSupportedItemTypes.d.ts +21 -0
- package/dist/lib/util/getLivingAtlasSupportedItemTypes.js +34 -0
- package/dist/lib/util/getLivingAtlasSupportedItemTypes.js.map +1 -0
- package/dist/lib/util/getNumberOfWords.js +6 -2
- package/dist/lib/util/getNumberOfWords.js.map +1 -1
- package/dist/lib/util/getScoringRules.js +6 -0
- package/dist/lib/util/getScoringRules.js.map +1 -1
- package/dist/lib/util/isLayer.js +3 -2
- package/dist/lib/util/isLayer.js.map +1 -1
- package/dist/lib/util/isUrl.d.ts +6 -0
- package/dist/lib/util/isUrl.js +16 -1
- package/dist/lib/util/isUrl.js.map +1 -1
- package/dist/lib/util/isValidRegexPattern.d.ts +7 -0
- package/dist/lib/util/isValidRegexPattern.js +20 -0
- package/dist/lib/util/isValidRegexPattern.js.map +1 -0
- package/dist/lib/util/sanitizeTags.d.ts +6 -0
- package/dist/lib/util/sanitizeTags.js +16 -0
- package/dist/lib/util/sanitizeTags.js.map +1 -0
- package/dist/lib/util/shouldValidateByBetaRules.js +6 -1
- package/dist/lib/util/shouldValidateByBetaRules.js.map +1 -1
- package/dist/lib/util/stringsConfig.d.ts +9 -0
- package/dist/lib/util/stringsConfig.js +9 -1
- package/dist/lib/util/stringsConfig.js.map +1 -1
- package/dist/lib/validate/validate.d.ts +57 -12
- package/dist/lib/validate/validate.js +87 -213
- package/dist/lib/validate/validate.js.map +1 -1
- package/dist/lib/validate/validateHelpers.d.ts +63 -0
- package/dist/lib/validate/validateHelpers.js +157 -0
- package/dist/lib/validate/validateHelpers.js.map +1 -0
- package/dist/locale/de.json +1 -1
- package/dist/locale/en.json +23 -23
- package/dist/locale/es.json +1 -1
- package/dist/locale/fr.json +1 -1
- package/dist/locale/ja.json +1 -1
- package/dist/locale/pt-br.json +1 -1
- package/dist/package-info.json +1 -1
- package/dist/services/content-validator-assets/config.d.ts +4 -0
- package/dist/services/content-validator-assets/config.js +8 -0
- package/dist/services/content-validator-assets/config.js.map +1 -0
- package/dist/services/content-validator-assets/fetchAdditonalPatterns4TitleAndSnippetSearchability.d.ts +95 -0
- package/dist/services/content-validator-assets/fetchAdditonalPatterns4TitleAndSnippetSearchability.js +92 -0
- package/dist/services/content-validator-assets/fetchAdditonalPatterns4TitleAndSnippetSearchability.js.map +1 -0
- package/dist/services/content-validator-assets/fetchProfanitiesData.d.ts +18 -0
- package/dist/services/content-validator-assets/fetchProfanitiesData.js +55 -0
- package/dist/services/content-validator-assets/fetchProfanitiesData.js.map +1 -0
- package/dist/services/content-validator-assets/helpers.d.ts +16 -0
- package/dist/services/content-validator-assets/helpers.js +35 -0
- package/dist/services/content-validator-assets/helpers.js.map +1 -0
- package/dist/services/custom-terms/config.d.ts +27 -0
- package/dist/services/custom-terms/config.js +79 -0
- package/dist/services/custom-terms/config.js.map +1 -0
- package/dist/services/custom-terms/customTerms.d.ts +229 -0
- package/dist/services/custom-terms/customTerms.js +394 -0
- package/dist/services/custom-terms/customTerms.js.map +1 -0
- package/dist/services/custom-terms/helpers.d.ts +8 -0
- package/dist/services/custom-terms/helpers.js +25 -0
- package/dist/services/custom-terms/helpers.js.map +1 -0
- package/dist/services/custom-terms/index.d.ts +3 -0
- package/dist/services/custom-terms/index.js +10 -0
- package/dist/services/custom-terms/index.js.map +1 -0
- package/dist/services/custom-terms-review-results/config.d.ts +31 -0
- package/dist/services/custom-terms-review-results/config.js +78 -0
- package/dist/services/custom-terms-review-results/config.js.map +1 -0
- package/dist/services/custom-terms-review-results/customTermsReviewResults.d.ts +133 -0
- package/dist/services/custom-terms-review-results/customTermsReviewResults.js +276 -0
- package/dist/services/custom-terms-review-results/customTermsReviewResults.js.map +1 -0
- package/dist/services/custom-terms-review-results/helpers.d.ts +24 -0
- package/dist/services/custom-terms-review-results/helpers.js +52 -0
- package/dist/services/custom-terms-review-results/helpers.js.map +1 -0
- package/dist/services/custom-terms-review-results/index.d.ts +4 -0
- package/dist/services/custom-terms-review-results/index.js +13 -0
- package/dist/services/custom-terms-review-results/index.js.map +1 -0
- package/dist/services/shared/addFeatures.d.ts +28 -0
- package/dist/services/shared/addFeatures.js +52 -0
- package/dist/services/shared/addFeatures.js.map +1 -0
- package/dist/services/shared/applyEdits.d.ts +28 -0
- package/dist/services/shared/applyEdits.js +53 -0
- package/dist/services/shared/applyEdits.js.map +1 -0
- package/dist/services/shared/config.d.ts +44 -0
- package/dist/services/shared/config.js +35 -0
- package/dist/services/shared/config.js.map +1 -0
- package/dist/services/shared/getItemInfo.d.ts +36 -0
- package/dist/services/shared/getItemInfo.js +56 -0
- package/dist/services/shared/getItemInfo.js.map +1 -0
- package/dist/types/index.d.ts +25 -22
- package/package.json +4 -3
- package/dist/__tests__/test-data/title-summary-data.json +0 -14654
- package/dist/data/TitleSummaryMatchingPatterns.json +0 -1902
- package/dist/lib/layers/isValidLayerCount.d.ts +0 -12
- package/dist/lib/layers/isValidLayerCount.js +0 -171
- package/dist/lib/layers/isValidLayerCount.js.map +0 -1
- package/dist/lib/layers/scoringConfig.d.ts +0 -10
- package/dist/lib/layers/scoringConfig.js +0 -20
- package/dist/lib/layers/scoringConfig.js.map +0 -1
- package/dist/lib/recommendedText/checkRecommendedText.d.ts +0 -15
- package/dist/lib/recommendedText/checkRecommendedText.js.map +0 -1
- package/dist/lib/recommendedText/helpers.d.ts +0 -15
- package/dist/lib/recommendedText/helpers.js +0 -62
- package/dist/lib/recommendedText/helpers.js.map +0 -1
- package/dist/lib/recommendedText/matchDateTimeInfo.d.ts +0 -9
- package/dist/lib/recommendedText/matchDateTimeInfo.js +0 -81
- package/dist/lib/recommendedText/matchDateTimeInfo.js.map +0 -1
- package/dist/lib/recommendedText/matchLocationInfo.d.ts +0 -9
- package/dist/lib/recommendedText/matchLocationInfo.js +0 -745
- package/dist/lib/recommendedText/matchLocationInfo.js.map +0 -1
- package/dist/lib/recommendedText/matchSourceInfo.d.ts +0 -9
- package/dist/lib/recommendedText/matchSourceInfo.js +0 -32
- package/dist/lib/recommendedText/matchSourceInfo.js.map +0 -1
- package/dist/lib/recommendedText/matchTopicInfo.d.ts +0 -9
- package/dist/lib/recommendedText/matchTopicInfo.js +0 -32
- package/dist/lib/recommendedText/matchTopicInfo.js.map +0 -1
- package/dist/lib/recommendedText/scoringConfig.js.map +0 -1
- /package/dist/lib/{recommendedText → checkTitleAndSnippetSearchability}/scoringConfig.d.ts +0 -0
- /package/dist/lib/{recommendedText → checkTitleAndSnippetSearchability}/scoringConfig.js +0 -0
|
@@ -0,0 +1,382 @@
|
|
|
1
|
+
[
|
|
2
|
+
"3D Elevation Program",
|
|
3
|
+
"ACLED",
|
|
4
|
+
"ACS",
|
|
5
|
+
"Actueel Hoogtebestand Nederland",
|
|
6
|
+
"AESD",
|
|
7
|
+
"Agency for Toxic Substances and Disease Registry",
|
|
8
|
+
"Agri-Environmental Spatial Data",
|
|
9
|
+
"AHN2",
|
|
10
|
+
"AHN3",
|
|
11
|
+
"AHN4",
|
|
12
|
+
"AirNow",
|
|
13
|
+
"AIS",
|
|
14
|
+
"American Community Survey",
|
|
15
|
+
"Army Corp of Engineers",
|
|
16
|
+
"Army Corps of Engineers",
|
|
17
|
+
"ASSET Research",
|
|
18
|
+
"ATKIS",
|
|
19
|
+
"ATSDR",
|
|
20
|
+
"BAG",
|
|
21
|
+
"Basisregistratie Topografie TOP10NL",
|
|
22
|
+
"BEAD",
|
|
23
|
+
"BEA",
|
|
24
|
+
"BfG",
|
|
25
|
+
"BGT",
|
|
26
|
+
"Bhuvan Thematic Services",
|
|
27
|
+
"BLS",
|
|
28
|
+
"BOEM",
|
|
29
|
+
"BRITICE",
|
|
30
|
+
"Broadband, Equity, Access, and Deployment",
|
|
31
|
+
"BRT",
|
|
32
|
+
"BSEE",
|
|
33
|
+
"BTS",
|
|
34
|
+
"Bundesanstalt für Gewässerkunde",
|
|
35
|
+
"Bureau of Economic Analysis",
|
|
36
|
+
"Bureau of Labor Statistics",
|
|
37
|
+
"Bureau of Land Management",
|
|
38
|
+
"Bureau of Ocean Energy Management",
|
|
39
|
+
"Bureau of Safety and Environmental Enforcement",
|
|
40
|
+
"Bureau of Transportation Statistics",
|
|
41
|
+
"C-CAP",
|
|
42
|
+
"CaBA",
|
|
43
|
+
"CAMS",
|
|
44
|
+
"Canada Centre for Mapping and Earth Observation",
|
|
45
|
+
"Catchment-Based Approach",
|
|
46
|
+
"CBS Wijk- en Buurtkaart",
|
|
47
|
+
"CCAP",
|
|
48
|
+
"CCMEO",
|
|
49
|
+
"CDC",
|
|
50
|
+
"Census Bureau",
|
|
51
|
+
"Census of Agriculture",
|
|
52
|
+
"Center for Operational Oceanographic Products and Services",
|
|
53
|
+
"Centers for Disease Control and Prevention",
|
|
54
|
+
"Centers for Medicare & Medicaid Services",
|
|
55
|
+
"Centers for Medicare and Medicaid Services",
|
|
56
|
+
"Centers of Medicare and Medicaid",
|
|
57
|
+
"CHELSA",
|
|
58
|
+
"Chen et. al",
|
|
59
|
+
"CHIRPS",
|
|
60
|
+
"Citizen Voting Age Population",
|
|
61
|
+
"Clark Labs",
|
|
62
|
+
"CMIP5",
|
|
63
|
+
"CO-OPS",
|
|
64
|
+
"Coast Guard",
|
|
65
|
+
"Coastal Change Analysis Program",
|
|
66
|
+
"Community Map of Canada",
|
|
67
|
+
"Community Maps contributors",
|
|
68
|
+
"Copernicus Atmosphere Monitoring Service",
|
|
69
|
+
"Coral Reef Watch",
|
|
70
|
+
"Corine",
|
|
71
|
+
"County Health Rankings",
|
|
72
|
+
"CVAP",
|
|
73
|
+
"Daylight map distribution of OSM",
|
|
74
|
+
"Demographic and Housing Characteristics",
|
|
75
|
+
"DENUE",
|
|
76
|
+
"Department of Defense",
|
|
77
|
+
"Department of Housing and Urban Development",
|
|
78
|
+
"Department of the Treasury",
|
|
79
|
+
"Department of Transportation",
|
|
80
|
+
"Dept. of Housing and Urban Development",
|
|
81
|
+
"DigitalGlobe",
|
|
82
|
+
"Directorio Estadístico Nacional de Unidades Económicas",
|
|
83
|
+
"Disaster Response Program",
|
|
84
|
+
"Drought Monitor",
|
|
85
|
+
"Earthquake Hazards Program",
|
|
86
|
+
"ECCC",
|
|
87
|
+
"ECMWF Streamflow Model",
|
|
88
|
+
"EcoVision Lab",
|
|
89
|
+
"eGRID",
|
|
90
|
+
"EIS",
|
|
91
|
+
"Emergency Management and Climate Readiness British Columbia",
|
|
92
|
+
"EmergencyMapBC",
|
|
93
|
+
"Emission Inventory System",
|
|
94
|
+
"Emissions & Generation Resource Integrated Database",
|
|
95
|
+
"EMSHR",
|
|
96
|
+
"EMV",
|
|
97
|
+
"Energy Information Administration",
|
|
98
|
+
"Enhanced Station History Report",
|
|
99
|
+
"Environment and Climate Change Canada",
|
|
100
|
+
"Environmental Protection Agency",
|
|
101
|
+
"EPA",
|
|
102
|
+
"Equal Employment Opportunity Commission",
|
|
103
|
+
"ESA Climate Change Initiative",
|
|
104
|
+
"Esri",
|
|
105
|
+
"ETH Zurich Department of Civil, Environmental and Geomatic Engineering",
|
|
106
|
+
"European Space Agency Climate Change Initiative",
|
|
107
|
+
"European Space Agency",
|
|
108
|
+
"Facility Registry Service",
|
|
109
|
+
"FAO",
|
|
110
|
+
"Farm Services Agency",
|
|
111
|
+
"FCC",
|
|
112
|
+
"Federal Aviation Administration",
|
|
113
|
+
"Federal Emergency Management Agency",
|
|
114
|
+
"Federal Geographic Data Committee",
|
|
115
|
+
"Federal Highway Administration",
|
|
116
|
+
"Federal Judicial Center",
|
|
117
|
+
"FEMA",
|
|
118
|
+
"FGDC",
|
|
119
|
+
"Fire and Resource Assessment Program",
|
|
120
|
+
"Fish and Wildlife Service",
|
|
121
|
+
"Fisheries and Oceans Canada",
|
|
122
|
+
"Flood Insurance Rate Map",
|
|
123
|
+
"Forest Service",
|
|
124
|
+
"FRAP",
|
|
125
|
+
"FRS",
|
|
126
|
+
"FWS",
|
|
127
|
+
"GAP Analysis Program",
|
|
128
|
+
"GEBCO",
|
|
129
|
+
"General Bathymetric Chart of the Oceans",
|
|
130
|
+
"GEOGLOWS 2.0 ECMWF Streamflow Model",
|
|
131
|
+
"GEOGLOWS",
|
|
132
|
+
"Geographic Names Information System",
|
|
133
|
+
"Geologic Survey",
|
|
134
|
+
"Geological Survey's Earthquake Hazards Program",
|
|
135
|
+
"Geological Survey",
|
|
136
|
+
"Geolytix",
|
|
137
|
+
"Geospatial Research, Analysis, and Services Program",
|
|
138
|
+
"GHCND",
|
|
139
|
+
"GIS community",
|
|
140
|
+
"GLDAS",
|
|
141
|
+
"Global Fishing Watch",
|
|
142
|
+
"Global Historical Climate Network",
|
|
143
|
+
"Global Ocean Observing System",
|
|
144
|
+
"Global Solar Atlas",
|
|
145
|
+
"Global Water Sustainability",
|
|
146
|
+
"GLW",
|
|
147
|
+
"GMTED",
|
|
148
|
+
"GNIS",
|
|
149
|
+
"GOES",
|
|
150
|
+
"GRASP",
|
|
151
|
+
"Green Infrastructure Initiative",
|
|
152
|
+
"GRID Arendal",
|
|
153
|
+
"Gridded Livestock of the World",
|
|
154
|
+
"Ground Water Atlas of the United States.",
|
|
155
|
+
"Ground Water Atlas of the United States",
|
|
156
|
+
"Group on Earth Observations",
|
|
157
|
+
"Hammond",
|
|
158
|
+
"Health Resources and Services Administration",
|
|
159
|
+
"HHUUD10",
|
|
160
|
+
"High Intensity Rainfall Depth Surfaces",
|
|
161
|
+
"HIRDS",
|
|
162
|
+
"Historical Housing Unit and Urbanization Database",
|
|
163
|
+
"Homeland Infrastructure Foundation Level Data",
|
|
164
|
+
"Household Pulse Survey",
|
|
165
|
+
"HUD",
|
|
166
|
+
"HYCOM Consortium",
|
|
167
|
+
"HYCOM",
|
|
168
|
+
"hydroSHEDS",
|
|
169
|
+
"ICEYE",
|
|
170
|
+
"IMERG",
|
|
171
|
+
"Impact Observatory",
|
|
172
|
+
"iNaturalist",
|
|
173
|
+
"Incorporated Place",
|
|
174
|
+
"Indian Health Service",
|
|
175
|
+
"Indigenous Geographical Names",
|
|
176
|
+
"INEGI",
|
|
177
|
+
"Integrated Multi-satellitE Retrievals for GPM",
|
|
178
|
+
"Interagency Sea Level Rise Task Force Report",
|
|
179
|
+
"IRWIN",
|
|
180
|
+
"ISRIC",
|
|
181
|
+
"Joint Typhoon Warning Center",
|
|
182
|
+
"Justice40",
|
|
183
|
+
"Klimaateffectatlas",
|
|
184
|
+
"Korean Hydrographic and Oceanographic Agency",
|
|
185
|
+
"KyFromAbove Aerial Photography",
|
|
186
|
+
"KyTopo",
|
|
187
|
+
"Land Resources Division",
|
|
188
|
+
"Landfire",
|
|
189
|
+
"Landsat 8 and 9",
|
|
190
|
+
"Landsat",
|
|
191
|
+
"LidarBC",
|
|
192
|
+
"LINZ",
|
|
193
|
+
"LOCA",
|
|
194
|
+
"LUCAS Copernicus",
|
|
195
|
+
"Map of Life",
|
|
196
|
+
"MapBiomas",
|
|
197
|
+
"Maxar",
|
|
198
|
+
"Microsoft Planetary Computer",
|
|
199
|
+
"Ministry of Home Affairs",
|
|
200
|
+
"Moderate Resolution Imaging Spectroradiometer",
|
|
201
|
+
"MODIS",
|
|
202
|
+
"Monitoring Trends in Burn Severity",
|
|
203
|
+
"Monoxide",
|
|
204
|
+
"MRLC",
|
|
205
|
+
"Multi-Resolution Land Characteristics Consortium",
|
|
206
|
+
"NAIP",
|
|
207
|
+
"NASA",
|
|
208
|
+
"NASS Cropland Data Layers",
|
|
209
|
+
"National Aerial Surveillance Program",
|
|
210
|
+
"National Agriculture Imagery Program",
|
|
211
|
+
"National Center for Education Statistics",
|
|
212
|
+
"National Center for Health Statistics Mortality Files",
|
|
213
|
+
"National Centers for Environmental Information",
|
|
214
|
+
"National Conservation Easement Database",
|
|
215
|
+
"National Crime Records Bureau",
|
|
216
|
+
"National Data Buoy Center",
|
|
217
|
+
"National Forest Carbon Monitoring System",
|
|
218
|
+
"National Geospatial Data Asset",
|
|
219
|
+
"National Heritage List for England",
|
|
220
|
+
"National Hurricane Center",
|
|
221
|
+
"National Hydro Network",
|
|
222
|
+
"National Hydrography Database High Resolution Plus",
|
|
223
|
+
"National Hydrography Database Plus",
|
|
224
|
+
"National Indicative Fluvial Mapping",
|
|
225
|
+
"National Institute of Statistic and Geography",
|
|
226
|
+
"National Invasive Plant Inventory Protocol.",
|
|
227
|
+
"National Land Cover Database",
|
|
228
|
+
"National Oceanic and Atmospheric Administration",
|
|
229
|
+
"National Park Service",
|
|
230
|
+
"National Register of Large Dams",
|
|
231
|
+
"National Renewable Energy Laboratory",
|
|
232
|
+
"National Risk Index",
|
|
233
|
+
"National Shelter System",
|
|
234
|
+
"National Statistical Directory of Economic Units",
|
|
235
|
+
"National Urban Change Indicator",
|
|
236
|
+
"National Water Model",
|
|
237
|
+
"National Weather Service",
|
|
238
|
+
"National Wetlands Inventory",
|
|
239
|
+
"Native Land Digital",
|
|
240
|
+
"Natural History Museum",
|
|
241
|
+
"Natural Resources Canada",
|
|
242
|
+
"Natural Resources Census",
|
|
243
|
+
"NaturalVue",
|
|
244
|
+
"NCED",
|
|
245
|
+
"NCEI",
|
|
246
|
+
"NCES",
|
|
247
|
+
"NCI",
|
|
248
|
+
"NCRB",
|
|
249
|
+
"NDBC",
|
|
250
|
+
"NEXRAD",
|
|
251
|
+
"NFMCS",
|
|
252
|
+
"NGDA",
|
|
253
|
+
"NHLE",
|
|
254
|
+
"NHN",
|
|
255
|
+
"NIFC",
|
|
256
|
+
"NIFM",
|
|
257
|
+
"NLCD",
|
|
258
|
+
"NOAA",
|
|
259
|
+
"Norwegian Environmental Agency",
|
|
260
|
+
"NRCan",
|
|
261
|
+
"NRC",
|
|
262
|
+
"NREL",
|
|
263
|
+
"NRLD",
|
|
264
|
+
"NSIDC",
|
|
265
|
+
"nstituto Nacional de Estadística y Geografía",
|
|
266
|
+
"NUCI",
|
|
267
|
+
"Nuclear Regulatory Commission",
|
|
268
|
+
"NUTS",
|
|
269
|
+
"Occupational Safety and Health Administration",
|
|
270
|
+
"OCS Marine Survey Group Official Protraction Diagram",
|
|
271
|
+
"Office for Coastal Management Coastal Change Analysis Program",
|
|
272
|
+
"Ookla",
|
|
273
|
+
"OpenAI",
|
|
274
|
+
"OpenAQ",
|
|
275
|
+
"OpenStreetMap",
|
|
276
|
+
"OpenWIMS Water Quality Linked Data Archive",
|
|
277
|
+
"Operational Simplified Surface Energy Balance",
|
|
278
|
+
"Ordnance Survey",
|
|
279
|
+
"OSM Daylight",
|
|
280
|
+
"OSM",
|
|
281
|
+
"PAD-US",
|
|
282
|
+
"PADDD",
|
|
283
|
+
"PAGER",
|
|
284
|
+
"PEI Global Drought Monitor",
|
|
285
|
+
"PLSS",
|
|
286
|
+
"Priority River Habitat Map",
|
|
287
|
+
"Programme national de surveillance aérienne",
|
|
288
|
+
"Project PLATEAU",
|
|
289
|
+
"Prompt Assessment of Global Earthquakes for Response (PAGER)",
|
|
290
|
+
"Prompt Assessment of Global Earthquakes for Response",
|
|
291
|
+
"Protected Area Downgrading, Downsizing, and Degazettement",
|
|
292
|
+
"Protected Areas Database of the United States",
|
|
293
|
+
"Public Land Survey System",
|
|
294
|
+
"Public Use Microdata Areas",
|
|
295
|
+
"PUMAs",
|
|
296
|
+
"Reference Elevation Model of Antarctica",
|
|
297
|
+
"Regrid",
|
|
298
|
+
"REMA",
|
|
299
|
+
"RESOLVE Ecoregions",
|
|
300
|
+
"RRIM",
|
|
301
|
+
"SafeGraph",
|
|
302
|
+
"Samish Indian Nation",
|
|
303
|
+
"SEDAC",
|
|
304
|
+
"SEMS",
|
|
305
|
+
"Sentinel-2",
|
|
306
|
+
"Sentinel",
|
|
307
|
+
"SGMC",
|
|
308
|
+
"Shuttle Radar Topography Mission",
|
|
309
|
+
"Soil Survey Geographic Database",
|
|
310
|
+
"Soilgrids.org",
|
|
311
|
+
"SoilGrids250m",
|
|
312
|
+
"SPEI Global Drought Monitor",
|
|
313
|
+
"SRTM",
|
|
314
|
+
"SSEBop",
|
|
315
|
+
"SSURGO",
|
|
316
|
+
"State Geologic Map Compilation",
|
|
317
|
+
"State Legislative Districts Lower",
|
|
318
|
+
"State Legislative Districts Upper",
|
|
319
|
+
"Statistics Canada",
|
|
320
|
+
"Stats NZ",
|
|
321
|
+
"StatsNZ",
|
|
322
|
+
"Suomi-NPP",
|
|
323
|
+
"Superfund Enterprise Management System",
|
|
324
|
+
"swissNAMES3D",
|
|
325
|
+
"TerraColor",
|
|
326
|
+
"The Crown Estate",
|
|
327
|
+
"The Nature Conservancy",
|
|
328
|
+
"TIGER",
|
|
329
|
+
"TOP10NL",
|
|
330
|
+
"Toxic Release Inventory",
|
|
331
|
+
"Transport Canada",
|
|
332
|
+
"U.S. Army Corp of Engineers",
|
|
333
|
+
"U.S. Army Corps of Engineers",
|
|
334
|
+
"U.S. Census Bureau",
|
|
335
|
+
"U.S. Coast Guard",
|
|
336
|
+
"U.S. Department of Defense",
|
|
337
|
+
"U.S. Department of Housing and Urban Development",
|
|
338
|
+
"U.S. Department of the Treasury",
|
|
339
|
+
"U.S. Department of Transportation",
|
|
340
|
+
"U.S. Dept. of Housing and Urban Development",
|
|
341
|
+
"U.S. Drought Monitor",
|
|
342
|
+
"U.S. Environmental Protection Agency",
|
|
343
|
+
"U.S. Fish and Wildlife Service",
|
|
344
|
+
"U.S. Forest Service",
|
|
345
|
+
"U.S. Geologic Survey",
|
|
346
|
+
"U.S. Geological Survey's Earthquake Hazards Program",
|
|
347
|
+
"U.S. Geological Survey",
|
|
348
|
+
"UN Food and Agriculture Organization",
|
|
349
|
+
"United Nations Food and Agriculture Organization",
|
|
350
|
+
"United States Forest Service",
|
|
351
|
+
"US Department of the Interior",
|
|
352
|
+
"US Department of Transportation",
|
|
353
|
+
"US Fish and Wildlife Service",
|
|
354
|
+
"US Forest Service",
|
|
355
|
+
"US Geological Survey",
|
|
356
|
+
"USACE",
|
|
357
|
+
"USCB",
|
|
358
|
+
"USCG",
|
|
359
|
+
"USDA Farm Services Agency",
|
|
360
|
+
"USDA NASS Cropland Data Layer",
|
|
361
|
+
"USDA",
|
|
362
|
+
"USDOT",
|
|
363
|
+
"USGS Landsat collection",
|
|
364
|
+
"USGS",
|
|
365
|
+
"USWTDB",
|
|
366
|
+
"VIIRS",
|
|
367
|
+
"Visible Infrared Imaging Radiometer Suite",
|
|
368
|
+
"Water Resources Information System",
|
|
369
|
+
"Watershed Boundary Dataset",
|
|
370
|
+
"WBD",
|
|
371
|
+
"WDPA",
|
|
372
|
+
"Wildland-Urban Interface",
|
|
373
|
+
"World Database on Protected Areas",
|
|
374
|
+
"World Ocean Atlas",
|
|
375
|
+
"World Wildlife Fund and Conservation International",
|
|
376
|
+
"WorldClim",
|
|
377
|
+
"WorldCover Consortium",
|
|
378
|
+
"WorldPop",
|
|
379
|
+
"WorldView",
|
|
380
|
+
"WRIS",
|
|
381
|
+
"WUI"
|
|
382
|
+
]
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[
|
|
2
|
+
"active",
|
|
3
|
+
"continuously updated",
|
|
4
|
+
"Current Conditions",
|
|
5
|
+
"Current",
|
|
6
|
+
"Eighteen hour",
|
|
7
|
+
"forecast",
|
|
8
|
+
"future",
|
|
9
|
+
"historical",
|
|
10
|
+
"huidig",
|
|
11
|
+
"latest available",
|
|
12
|
+
"latest data",
|
|
13
|
+
"Latest",
|
|
14
|
+
"live feed",
|
|
15
|
+
"Live",
|
|
16
|
+
"multitemporal",
|
|
17
|
+
"near real time",
|
|
18
|
+
"past calendar year",
|
|
19
|
+
"past",
|
|
20
|
+
"Present",
|
|
21
|
+
"Real-time",
|
|
22
|
+
"recent",
|
|
23
|
+
"since",
|
|
24
|
+
"Yearly"
|
|
25
|
+
]
|