-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72e3d97
commit f3c888e
Showing
38 changed files
with
882 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
id: baseline | ||
title: Baseline Audit | ||
sidebar_label: Baseline Audit | ||
--- | ||
|
||
The baseline module automatically computes a network baseline and generates a comparison report. The baseline is computed by grouping | ||
GSM cells by BSCs, WCDMA/UMTS cells by RNC, and LTE cells by tracking area. | ||
|
||
To run the baseline, first import your data through the "**Parse and Import**" module. | ||
Then launch the **Baseline Audit** module. Once there, click run baseline to generate network baseline. | ||
|
||
|
||
![GIS Module](/bts-ce-lite/img/baseline_module.png) | ||
|
||
The generated comparison report can be viewed under the **Baseline Audit** reports folder in the reports module tree. | ||
|
||
![GIS Module](/bts-ce-lite/img/baseline_comparison_report.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
id: utilities | ||
title: Utilities | ||
sidebar_label: Utilities | ||
--- | ||
|
||
|
||
## Combine CSV files into a excel workbook | ||
The **CSV to Excel Combiner** utility combines a list of csv files into one excel workbook with each file on a separate worksheet. | ||
|
||
![GIS Module](/bts-ce-lite/img/csv_to_excel_combiner.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export const VERSION = "0.3.0-rc.1"; | ||
export const VERSION = "0.3.0"; | ||
|
||
export default VERSION; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: Version 0.3.0 Release | ||
author: Emmanuel Robert Ssebaggala | ||
authorURL: https://www.ssegga.com | ||
--- | ||
|
||
0.3.0 is now available. Below are changes | ||
* Baseline computation | ||
* Added GIS module that supports boda cell file and TEMS CEL and XML files | ||
* Added csv to excel combiner | ||
* Preserve column ordering when reports are exported | ||
* Update documentation with boda cell file structure | ||
* Added relations reports | ||
* Tracking documetation with releases | ||
* Parsing and loading of Ericsson EAW printous added | ||
* Parsing of Motorola Cell X Export dumps | ||
* Processing and loading of Ericsson, Huawei, and Nokia PM | ||
* Added database migrations scripts | ||
* Parsing and loading of Ericsson BSM inventory dumps | ||
* Parsing and loading of Huawei AUTOBAK XML files | ||
* Added relations reports | ||
* Added combined key parameter report | ||
* Added table styling during report creation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
/** | ||
* Copyright (c) 2017-present, Facebook, Inc. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
const React = require('react'); | ||
|
||
const CompLibrary = require('../../core/CompLibrary'); | ||
|
||
const Container = CompLibrary.Container; | ||
|
||
const CWD = process.cwd(); | ||
|
||
const versions = require(`${CWD}/versions.json`); | ||
|
||
function Versions(props) { | ||
const {config: siteConfig} = props; | ||
const latestVersion = versions[0]; | ||
const repoUrl = `https://github.com/${siteConfig.organizationName}/${ | ||
siteConfig.projectName | ||
}`; | ||
return ( | ||
<div className="docMainWrapper wrapper"> | ||
<Container className="mainContainer versionsContainer"> | ||
<div className="post"> | ||
<header className="postHeader"> | ||
<h1>{siteConfig.title} Versions</h1> | ||
</header> | ||
<p>New versions of this project are released every so often.</p> | ||
<h3 id="latest">Current version (Stable)</h3> | ||
<table className="versions"> | ||
<tbody> | ||
<tr> | ||
<th>{latestVersion}</th> | ||
<td> | ||
{/* You are supposed to change this href where appropriate | ||
Example: href="<baseUrl>/docs(/:language)/:id" */} | ||
<a | ||
href={`${siteConfig.baseUrl}${siteConfig.docsUrl}/${ | ||
props.language ? props.language + '/' : '' | ||
}doc1`}> | ||
Documentation | ||
</a> | ||
</td> | ||
<td> | ||
<a href="">Release Notes</a> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p> | ||
This is the version that is configured automatically when you first | ||
install this project. | ||
</p> | ||
<h3 id="rc">Pre-release versions</h3> | ||
<table className="versions"> | ||
<tbody> | ||
<tr> | ||
<th>master</th> | ||
<td> | ||
{/* You are supposed to change this href where appropriate | ||
Example: href="<baseUrl>/docs(/:language)/next/:id" */} | ||
<a | ||
href={`${siteConfig.baseUrl}${siteConfig.docsUrl}/${ | ||
props.language ? props.language + '/' : '' | ||
}next/doc1`}> | ||
Documentation | ||
</a> | ||
</td> | ||
<td> | ||
<a href={repoUrl}>Source Code</a> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p>Other text describing this section.</p> | ||
<h3 id="archive">Past Versions</h3> | ||
<p>Here you can find previous versions of the documentation.</p> | ||
<table className="versions"> | ||
<tbody> | ||
{versions.map( | ||
version => | ||
version !== latestVersion && ( | ||
<tr> | ||
<th>{version}</th> | ||
<td> | ||
{/* You are supposed to change this href where appropriate | ||
Example: href="<baseUrl>/docs(/:language)/:version/:id" */} | ||
<a | ||
href={`${siteConfig.baseUrl}${siteConfig.docsUrl}/${ | ||
props.language ? props.language + '/' : '' | ||
}${version}/doc1`}> | ||
Documentation | ||
</a> | ||
</td> | ||
<td> | ||
<a href={`${repoUrl}/releases/tag/v${version}`}> | ||
Release Notes | ||
</a> | ||
</td> | ||
</tr> | ||
), | ||
)} | ||
</tbody> | ||
</table> | ||
<p> | ||
You can find past versions of this project on{' '} | ||
<a href={repoUrl}>GitHub</a>. | ||
</p> | ||
</div> | ||
</Container> | ||
</div> | ||
); | ||
} | ||
|
||
module.exports = Versions; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.