Natural resource monitoring in Alaska's northernmost national parks
-
National Park Service
- Fairbanks, Alaska
- https://www.nps.gov/im/arcn/index.htm
Pinned Loading
-
GeoDBToText
GeoDBToText PublicThe GeoDBToText ArcGIS Python script tool exports each feature class in a geodatabase to human and machine text (pipe separated values/WKT, ESRI JSON) file formats.
Python 1
-
SQL: Select points that fall within ...
SQL: Select points that fall within a polygon 1-- SQL Server 2008R2, there are better functions in later versions of Sql Server such as STContains()
2SELECT Animals.GroupNumber
3FROM LegacyUnits INNER JOIN
4Animals ON LegacyUnits.PolygonFeature.STIntersects(Animals.Location) = 1
5 -
YBLO-Observation-Protocol-ObsProt
YBLO-Observation-Protocol-ObsProt PublicThe NPS Yellow-billed loons monitoring program relies on NPS Park Observer software for field data collection. The software relies on an observation protocol (.obsprot) file to define what data is …
-
ArcPy: Access feature class data
ArcPy: Access feature class data 1import arcpy
2import numpy
3input = r"C:\Work\Waypoints.shp"
4arr = arcpy.da.FeatureClassToNumPyArray(input, ('ident', 'Latitude', 'Longitude'))
5for row in arr:
-
Describe SQL Server Tables
Describe SQL Server Tables 1-- Table descriptions
2SELECT DISTINCT u.name + '.' + t.name AS [Table], td.value AS TableDescription
3FROM sys.sysobjects AS t INNER JOIN
4sys.sysusers AS u ON u.uid = t.uid LEFT OUTER JOIN
5sys.extended_properties AS td ON td.major_id = t.id AND td.minor_id = 0 AND td.name = 'MS_Description' INNER JOIN
-
TrimbleGeoDBToDatabase
TrimbleGeoDBToDatabase PublicShallow Lakes Monitoring: Trimble Geodatabase to Database Import Tool
Python 1
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.