Skip to content

Instantly share code, notes, and snippets.

@green3g
green3g / app.html
Created July 5, 2017 15:08
Promise hide show bug
<script type="text/stache" id="component">
{{#if show}}
{{#each data as obj}}
<p>{{obj.value}}</p>
{{/each}}
<p ($click)="refresh">refresh</p>
{{#if promise.isPending}}is pending{{else}}not pending{{/if}}
{{#if data}}<p>we have data {{data.length}}</p>{{/if}}
{
"name": "can-admin-app",
"version": "0.1.1",
"lockfileVersion": 1,
"dependencies": {
"@types/express": {
"version": "4.0.36",
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.0.36.tgz",
"integrity": "sha512-bT9q2eqH/E72AGBQKT50dh6AXzheTqigGZ1GwDiwmx7vfHff0bZOrvUWjvGpNWPNkRmX1vDF6wonG6rlpBHb1A==",
"dev": true
@green3g
green3g / tool.py
Created June 12, 2017 14:31
ArcGIS Project Map Parameter
def updateParameters(self):
"""Modify the values and properties of parameters before internal
validation is performed. This method is called whenever a parameter
has been changed."""
if self.params[0].altered and self.params[0].value != "":
projectPath = self.params[0].value
aprx = arcpy.mp.ArcGISProject(projectPath)
# Get list of maps in project
map_list = [m.name for m in aprx.listMaps()]
# Populate Map param
@green3g
green3g / README.md
Last active August 30, 2017 19:15
ArcGIS Pro Dealbreakers - Things Preventing Me From Using ArcGIS Pro full time

Basic Functionality

  • The ability to modify geometric networks. Nearly every gis asset we maintain is participating in a geometric network, so this is a must have.
  • The ability to add annotations to a map. Word is, this is coming in 2.0, so we'll see.
  • An efficient data managing interface, like ArcCatalog is not present. I regularly use the plethora of tools built into ArcCatalog and ArcMap. This includes the ability to create new datasets, networks, etc but also the management tools like Import/Export, Administration, Distributed Database, Share As... etc.

Web Sharing Functions

These are the scripts I use to build CanJS 3 in AMD format.
@green3g
green3g / _URLMixin.js
Created March 28, 2017 20:59
A simple url loading mixin
define([
'dojo/_base/declare',
'dojo/_base/lang'
], function (declare, lang) {
return declare(null, {
/**
@green3g
green3g / file.js
Created March 13, 2017 20:21
can-component programmatic
import paginate from 'spectre-canjs/paginate-widget/';
import scope from 'can-view-scope';
new paginate(document.body, {
scope: new scope({
pages: 2
}),
options: new scope({
}),
subTemplate: ''
});
@green3g
green3g / calculateRatedCapacity.js
Created February 15, 2017 13:55
Fire Flow Test in Javascript
function calculateRatedCapacity(staticPressure, residualPressure, outletDiameter, pitotReading) {
var outletCoefficient = 0.9;
var MULTIPLIER = 29.83;
var EXPONENT = 0.54;
if (outletDiameter > 2.5) {
outletCoefficient = 0.75;
}
var pressureToSubtract;
@green3g
green3g / modified identifies.js
Created January 26, 2017 17:01
multiple relationships in an identify popup
identifies: {
wellFields: {
1: {
title: 'Petrolium',
//for our content formatter, we call the function, since
//it returns a function
content: formatters.relationship(
[{
objectIdField: 'OBJECTID',
@green3g
green3g / ParcelQuery.js
Created January 17, 2017 15:06
simple cmv widget to query parcels
// in the top of viewer.js add these in your define block...
// ORDER is important and function variables need to match the list
define([
'esri/tasks/query',
'esri/tasks/QueryTask',
'esri/SpatialReference',
], function(Query, QueryTask, SpatialReference){
....