text
stringlengths
0
834k
/* The starting address of the application. Normally the interrupt vectors */
/* must be located at the beginning of the application. */
#define APP_BASE 0x00000000
#define RAM_BASE 0x20000000
/* System memory map */
MEMORY
{
/* Application stored in and executes from internal flash */
FLASH (RX) : origin = APP_BASE, length = 0x00100000
/* Application uses internal RAM for data */
SRAM (RWX) : origin = 0x20000000, length = 0x00040000
}
/* Section allocation in memory */
SECTIONS
{
.intvecs: > APP_BASE
.text : > FLASH
.const : > FLASH
.cinit : > FLASH
.pinit : > FLASH
.init_array : > FLASH
.vtable : > RAM_BASE
.data : > SRAM
.bss : > SRAM
.sysmem : > SRAM
.stack : > SRAM
}
__STACK_TOP = __stack + 512;
",39.3661971831,81,0.5706618962
219779,f3190382ad2386f1510aa0595579e3791a975f62,1391,bat,Batchfile,LAStools/example_batch_scripts/quality_check_single_block.bat,RohitDhankar/dcGIS,835c66edd319372b590c0c7b92450694ff8920cd,['MIT'],,,,LAStools/example_batch_scripts/quality_check_single_block.bat,RohitDhankar/dcGIS,835c66edd319372b590c0c7b92450694ff8920cd,['MIT'],,,,LAStools/example_batch_scripts/quality_check_single_block.bat,RohitDhankar/dcGIS,835c66edd319372b590c0c7b92450694ff8920cd,['MIT'],,,,"::
:: Quality check for a single block
::
set PATH=%PATH%;D:\LAStools\bin;
:: global definitions
set SERVER_PATH=\\Lidar02_server\raw_data_vd0\PhilLiDAR2\Classified LAS
set OUTPUT_PATH=.
set QUALITY_FOLDER=quality_checks
set COARSE_DTM_FOLDER=coarse_dtms
set BLOCK=Agno5F_20130417
set LIDAR_FOLDER=LAS_FILES
set LIDAR_FORMAT=las
set COARSE_DTM_STEP=5
set CORES=4
:: remove old new directories
rmdir %OUTPUT_PATH%\%QUALITY_FOLDER%\%BLOCK% /s /q
:: make directories
mkdir %OUTPUT_PATH%\%QUALITY_FOLDER%\%BLOCK%
mkdir %OUTPUT_PATH%\%COARSE_DTM_FOLDER%
:: check LAS file integrity with lasvalidate
lasvalidate -i ""%SERVER_PATH%\%BLOCK%\%LIDAR_FOLDER%\*.%LIDAR_FORMAT%"" ^
-no_CRS_fail ^
-o %OUTPUT_PATH%\%QUALITY_FOLDER%\%BLOCK%_validate.xml
:: check flightline overlap with lasoverlap
lasoverlap -i ""%SERVER_PATH%\%BLOCK%\%LIDAR_FOLDER%\*.%LIDAR_FORMAT%"" ^
-recover_flightlines -utm 51N ^
-odir %OUTPUT_PATH%\%QUALITY_FOLDER%\%BLOCK% ^
-opng ^
-cores %CORES%
:: create coarse DTM for inter-block alignment check with lasgrid
lasgrid -i ""%SERVER_PATH%\%BLOCK%\%LIDAR_FOLDER%\*.%LIDAR_FORMAT%"" ^
-merged ^
-step %COARSE_DTM_STEP% -lowest ^
-o %OUTPUT_PATH%\%COARSE_DTM_FOLDER%\%BLOCK%_%COARSE_DTM_STEP%m.bil
",28.387755102,80,0.6685837527
219780,f31929d821139d5708b31d859cb2561370ac7310,73,bat,Batchfile,GetBalanceScript.bat,RoryHolland/mph_balance,3aa4cd2543441ac2bbdb71d9574ee25c3db6e68c,['MIT'],4.0,2017-12-09T12:14:45.000Z,2017-12-27T13:50:21.000Z,GetBalanceScript.bat,RoryHolland/mph_balance,3aa4cd2543441ac2bbdb71d9574ee25c3db6e68c,['MIT'],2.0,2018-02-01T10:51:21.000Z,2021-06-01T22:06:44.000Z,GetBalanceScript.bat,RoryHolland/mph_balance,3aa4cd2543441ac2bbdb71d9574ee25c3db6e68c,['MIT'],3.0,2017-12-18T02:41:40.000Z,2018-02-06T18:36:41.000Z,"""C:\Program Files\Git\bin\sh.exe"" --login -i -c ""python Script.py"" ""%~1"" ",73.0,73,0.6301369863
219781,f31939389dc3526a25735975d15fdc0162f70329,54,bat,Batchfile,config.bat,JoelTinx/simplewebapp,185a45452773e624ba21367c23e99aaee026b1d1,['MIT'],,,,config.bat,JoelTinx/simplewebapp,185a45452773e624ba21367c23e99aaee026b1d1,['MIT'],,,,config.bat,JoelTinx/simplewebapp,185a45452773e624ba21367c23e99aaee026b1d1,['MIT'],,,,"set GOPATH=C:\Users\JOEL\Desktop\Go\sismplewebapp
cls
",18.0,49,0.8148148148
219782,f3193cda3ce507eb60b8fea7c98b646a603a8860,510,bat,Batchfile,initialize_environment_for_first_use.bat,portikCoder/mypersonal_showcase_website,5718dbc436bb86a8d88ef28003dc8fe033d772bd,['MIT'],,,,initialize_environment_for_first_use.bat,portikCoder/mypersonal_showcase_website,5718dbc436bb86a8d88ef28003dc8fe033d772bd,['MIT'],,,,initialize_environment_for_first_use.bat,portikCoder/mypersonal_showcase_website,5718dbc436bb86a8d88ef28003dc8fe033d772bd,['MIT'],,,,"@REM Script to initialize the environment for the first use
@REM /P
FOR /F ""tokens=* USEBACKQ"" %%F IN (`py -3 --version`) DO (
SET raw_python_3_version=%%F
)
ECHO %raw_python_3_version%
SET raw_python_3_version_only=%raw_python_3_version:* =% && ECHO %raw_python_3_version_only% && SET python_3_version_only=%raw_python_3_version_only:.=% && ECHO %python_3_version_only%
SET python_3_version_only=%python_3_version_only: =%